
    * {margin:0;padding:0;box-sizing:border-box;}
    body {font-family: Arial, sans-serif;line-height:1.6;color:#333;}
    img {max-width:100%;display:block;}
    .container {max-width:1200px;margin:auto;padding:20px;}

    /* Header */
    /*header {background:#0a7a0a;color:white;padding:15px 20px;display:flex;justify-content:space-between;align-items:center;}
    header nav ul {display:flex;list-style:none;gap:20px;}
    header nav a {color:white;text-decoration:none;font-weight:bold;}*/
    .menu-toggle{display:none;font-size:1.5rem;cursor:pointer;}

    /* Hero */
    .hero {display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:60px 20px;min-height: 600px;}
    .hero h1 {color:#0a7a0a;font-size:2rem;margin-bottom:20px;font-weight:bold;}
    .hero-left {flex:1;min-width:280px;padding: 60px 40px;}
    .hero-right {flex:1;min-width:280px;padding: 60px 40px;}
    .hero-form input, .hero-form button {width:100%;padding:10px;margin:8px 0;}
    .hero-form button {background:#0a7a0a;color:white;border:none;cursor:pointer;}

    /* Partners */
    .partners {background:#f8f8f8;padding:20px;text-align:center;}
    .partners h2 {color:#0a7a0a;margin-bottom:10px;font-weight:bold;}
    .logos {display:flex;gap:20px;justify-content:center;flex-wrap:wrap;width: max-content;animation: scroll 30s linear infinite;}
    .logos img{max-width:100%;height:100px;}
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    .partner-container{ max-width: 1340px;margin: 0 auto;overflow: hidden;}

    /* Testimonials */
    .testimonials {padding:40px 20px;text-align:center;}
    .testimonials h2 {color:#0a7a0a;margin-bottom:10px;font-weight:bold;}
    .testimonial-card {display:inline-block;background:#f4f4f4;padding:20px;margin:10px;border-radius:8px;max-width:250px;}
    .reviews-sec{ display:flex;width:max-content;gap:30px; }
    .reviews-sec img { height: 320px;width: auto;  }
    .test-container{ max-width: 1200px;margin: 0 auto;overflow: hidden;}
    .reviews-wrapper{justify-items: center;}
    .review-dots {margin-top: 20px;}
    .review-dots .dot {
        height: 12px;
        width: 12px;
        background: #ccc;
        border-radius: 50%;
        margin: 6px;
        display: inline-block;
        cursor: pointer;
    }
    .review-dots .dot.active {
        background: #333;
    }


    
    /* Signup Why Section */
    .why {padding:40px 20px;text-align:center;}
    .why h2 {color:#0a7a0a;margin-bottom:20px;font-weight:bold;}
    .why h4 {font-weight:bold;}
    .features {display:flex;flex-wrap:wrap;gap:60px;justify-content:center;}
    .feature {flex:1;min-width:250px;max-width:300px;background:#fafafa;padding:20px;border-radius:8px;text-align:center;}
    .step-image{width: 100%;max-width: 245px;height: 205px;object-fit: contain;margin-bottom: 0.5rem; }
    
    /* Benefits */
    .benefits {padding:40px 20px;text-align:center;}
    .benefits h2 {color:#0a7a0a;margin-bottom:10px;font-weight:bold;}
    .benefits h4 {font-weight:bold;}
    .benefits img{max-width:100%;max-height:50%;display: initial;margin-top: 10px;}
    .benefit-grid {display:flex;flex-wrap:wrap;gap:20px;justify-content:center;}
    .benefit {flex:1;min-width:220px;max-width:250px;background: #fafafa;}

    /* Steps */
    .steps {padding:40px 20px;text-align:center;}
    .steps h2 {color:#0a7a0a;margin-bottom:10px;font-weight:bold;}
    .steps-content {display:flex;flex-wrap:wrap;gap:15px;align-items:center;justify-content:center;}
    .steps-img {flex:1;min-width:250px;}
    .steps-img img {width: 80%;}
    .steps-text {flex:1;min-width:250px;text-align:left;font-size:20px;}
    /* Responsive - added below for the image */  
   


    /* FAQ */
    .faq {padding:40px 20px;background:#f8f8f8;}
    .faq h2 {color:#0a7a0a;margin-bottom:20px;text-align:center;font-weight:bold;}
    /*.faq-grid {display:grid;grid-template-columns:1fr 1fr;gap:10px;}*/
    .faq-item {background:white;padding:10px;border:1px solid #ddd;}
    .faq-question {position: relative;font-weight:bold;}
    .faq-answer {max-height: 0;overflow: hidden;font-size: 16px;color: #555;transition: max-height 0.4s ease, padding 0.3s ease;
     padding-left: 5px; }
    .faq-item.active .faq-answer {max-height: 200px;padding-top: 10px;}
    .faq-columns {
      display: flex;
      gap: 30px;
    }
    .faq-column {
      width: 50%;
    }
    .faq-question::after {
      content: "▼";
      position: absolute;
      right: 0;
      top: 0;
      font-size: 14px;
      transition: transform 0.3s;
    }
    .faq-item.active .faq-question::after {
      transform: rotate(180deg);
    }
    .faq-item.active .faq-question {
      color: #0a7a0a; 
    }
    .faq-item.active .faq-answer {
      max-height: 200px; 
      margin-top: 8px;
    }


    /* Newsletter & App */
    .newsletter {padding:40px 20px;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:20px;}
    .newsletter form {flex:1;min-width:250px;}
    .newsletter input {padding:10px;width:100%;margin-bottom:10px;}
    .newsletter button {padding:10px 20px;background:#0a7a0a;color:white;border:none;cursor:pointer;}
    .app-links img {width:190px;margin:0px;}
    .store-icons {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }
    .store-icons img {
        height: 50px; 
        cursor: pointer;
    }


    /* Footer */
    footer {background:#0a7a0a;color:white;text-align:center;padding:20px;}

    /* Responsive */
    @media(max-width:768px){
      header nav ul{display:none;flex-direction:column;background:#0a7a0a;position:absolute;top:60px;right:20px;padding:20px;}
      header nav ul.show{display:flex;}
      .menu-toggle{display:block;color:white;}
      .hero{flex-direction:column;}
      .steps-content{flex-direction:column;}
      /*.faq-grid{grid-template-columns:1fr;}*/
      .steps-img img {width: 100%;}
    }
    
    /* -------------------------------------
       Responsive Tablet (max-width: 1024px)
    -------------------------------------- */
    @media (max-width: 1024px) {
        .hero {
            padding: 40px 20px;
            gap: 30px;
        }
    
        .hero-left,
        .hero-right {
            padding: 15px;
        }
        .steps-img img{
            height: 816px;
        }
    }
    
    /* -------------------------------------
       Responsive Mobile (max-width: 768px)
    -------------------------------------- */
    @media (max-width: 768px) {
        .hero {
            flex-direction: column;
            text-align: center;
            padding: 30px 15px;
            gap: 20px;
        }
    
        .hero-left,
        .hero-right {
            padding: 10px;
        }
    
        .hero h1 {
            font-size: 1.6rem;font-weight:bold;
        }
    
        .hero-form input,
        .hero-form button {
            padding: 10px;
        }
        
        .faq-columns {
            flex-direction: column;
            display:block;
        }
        .faq-column {
            width: 100%;
        }
      
    }
    
    /* -------------------------------------
       Small Mobile (max-width: 480px)
    -------------------------------------- */
    @media (max-width: 480px) {
        .hero {
            padding: 60px 10px;
        }
    
        .hero-left, 
        .hero-right {
            padding: 5px;
        }
    
        .hero h1 {
            font-size: 1.4rem;
            font-weight:bold;
        }
    }
  