/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Navbar */
  .navbar {
    background: #ff5f6d;
    padding: 1rem;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .navbar .btn {
    background: #ffc371;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #fff;
  }
  
  /* Sticky Navbar */
  .navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(90deg, #ff5f6d, #ffc371);
    color: #fff;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .hero .hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .hero .btn {
    margin: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: #34d399;
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.2s;
  }
  
  .hero .btn:hover {
    transform: scale(1.1);
  }
  
  .hero .btn.btn-alt {
    background: #3b82f6;
  }
  
  /* Section Reveal Animations */
  section.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Features Section */
  .features {
    padding: 3rem 1rem;
    background: #ffedcc;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #ff5f6d;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    align-items: center;
  }
  
  .feature {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .feature:hover {
    transform: translateY(-10px);
  }
  
  .feature img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  
  .feature h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .feature p {
    color: #666;
    font-size: 1rem;
  }
  
  /* About Section */
  .about {
    padding: 3rem 1rem;
    text-align: center;
    background: #fff;
  }
  
  .about h2 {
    font-size: 2.5rem;
    color: #ff5f6d;
    margin-bottom: 1rem;
  }
  
  .about p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: #666;
  }
  
  .about img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* FAQ Section */
  .faq {
    padding: 3rem 1rem;
    background: #fff;
  }
  
  .faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff5f6d;
    margin-bottom: 2rem;
  }
  
  .faq-item {
    margin-bottom: 1.5rem;
  }
  
  .faq-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .faq-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Footer */
  .footer {
    background: #ff5f6d;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
  }
  
  .footer p {
    margin: 0.5rem 0;
  }
  
  .footer a {
    color: #ffc371;
    text-decoration: none;
    font-weight: 600;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar .nav-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .hero .btn {
      margin: 0.5rem 0;
      width: 100%;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .feature img {
      max-width: 100%;
    }
  }
  