html {
    scroll-behavior: smooth;
  }
  

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
  }
  
  .hero-section {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    height: 100vh;
    animation: fadeIn 2s ease-in-out;
  }

  .hero-content {
    padding-top: 150px;
    scale: 150%;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
  }
  
  .logo {
    font-size: 1.5em;
    font-weight: 600;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin: 0 10px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 400;
  }
  
  .nav-links a:hover {
    color: #ffcc00;
  }
  
  .hero-content {
    max-width: 600px;
    margin: 0 auto;
    animation: slideIn 1.5s ease-in-out;
  }
  
  @keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  .btn-primary {
    background: #ffcc00;
    color: #333;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
  }
  
  .btn-primary:hover {
    background: #ff9900;
  }
  
  .features-section, .how-it-works-section, .pricing-section, .testimonials-section, .cta-section, .footer-section {
    padding: 50px 20px;
    text-align: center;
    background: white;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .features-section h2, .how-it-works-section h2, .pricing-section h2, .testimonials-section h2, .cta-section h2 {
    color: #6a11cb;
  }
  
  .pricing-table {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .pricing-plan {
    border: 2px solid #6a11cb;
    padding: 20px;
    width: 300px;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
  }
  
  .pricing-plan:hover {
    transform: scale(1.05);
    background: #f0f0f0;
  }
  
  .btn-secondary {
    background: #2575fc;
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
  }
  
  .btn-secondary:hover {
    background: #6a11cb;
  }
  
  .testimonials-section .testimonial {
    background: #2575fc;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
  }
  
  @keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  .cta-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
  }
  
  .footer-section {
    background: #333;
    color: white;
    padding: 20px;
  }
  
  .footer-section p {
    margin: 0;
  }
  