/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header / Navbar */
  .header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }
  
  .logo a {
    text-decoration: none;
    color: #ff5864;
    font-weight: 600;
    font-size: 1.5rem;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #ff5864;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 3rem 0;
  }
  
  .hero-content {
    flex: 1 1 450px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .highlight {
    color: #ff5864;
    font-weight: 700;
  }
  
  .hero-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
  }
  
  .cta-btn {
    display: inline-block;
    background: #ff5864;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .cta-btn:hover {
    background: #ff2e3b;
  }
  
  .hero-image {
    flex: 1 1 400px;
    text-align: center;
    padding: 1rem;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }
  
  /* About Section */
  .about {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .about-text {
    flex: 1 1 400px;
  }
  
  .about-text p {
    margin-bottom: 1rem;
  }
  
  .about-images {
    flex: 1 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  .img-box {
    width: 280px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  /* Gallery Section */
  .gallery {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.05);
  }
  
  /* Contact Section */
  .contact {
    padding: 3rem 0;
  }
  
  .contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
  
  .contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-field label {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .form-field input,
  .form-field textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: #ff5864;
  }
  
  button.cta-btn {
    width: fit-content;
    align-self: flex-start;
  }
  
  /* Footer */
  .footer {
    background: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  }
  
  .footer p {
    color: #999;
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .about-content {
      flex-direction: column;
    }
  
    .navbar {
      flex-direction: column;
      gap: 1rem;
      height: auto;
    }
  
    .nav-links {
      gap: 1rem;
    }
  }
  