.project-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.project-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.project-page h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #2c3e50;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.project-page p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.project-page a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-page a:hover {
  color: #0056b3;
}

.project-page img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-page video {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-page ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.project-page li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.project-page li:before {
  content: "•";
  color: #007bff;
  position: absolute;
  left: 0;
}

.project-page pre {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.project-page code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  background-color: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .project-page {
    padding: 1rem;
  }

  .project-page h1 {
    font-size: 2rem;
  }

  .project-page h2 {
    font-size: 1.5rem;
  }
} 