body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #faf3e0, #f9e6c1);
    color: #2a2a2a;
  }
  
  .projects-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
  }
  
  .projects-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
  }
  
  .projects-subtitle {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 4rem;
  }
  
  /* Project Grid */
  .projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  /* Project Card */
  .project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 320px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .project-info {
    padding: 1.5rem;
  }
  
  .project-info h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #d9822b;
  }
  
  .project-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .project-info a {
    color: #d9822b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .project-info a:hover {
    color: #a9611e;
  }
  
  /* Back button */
  .back-button {
    text-align: center;
    margin-top: 3rem;
  }
  
  .back-button a {
    text-decoration: none;
    font-size: 1rem;
    color: #2a2a2a;
    border: 1px solid #2a2a2a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .back-button a:hover {
    background-color: #2a2a2a;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .projects-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .project-card {
      width: 100%;
      max-width: 360px;
    }
  }