* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

/* Navigation Styles */
 nav {
    background-color: #2a7f62;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
}
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}
.nav-links a:hover {
    opacity: 0.8;
}


.mobile-menu {
    display: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
}

.download-ebook {
    background-color: white;
    color: #2a7f62;
    padding: 12px 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

 a {
  text-decoration: none;
}

  /* Hero Banner */
  .hero-banner {
    height: 100vh;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(32, 201, 151, 0.9)),
                url('https://images.unsplash.com/photo-1535914254981-b5012eebbd15?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    /* padding: 80px 20px 20px; */
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}


.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    line-height: 1.2;
}


.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Ebook Cover */
.ebook-cover {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: transform 0.3s ease;
}


.ebook-cover:hover {
    transform: scale(1.05);
}


/* CTA Button */
.cta-button {
    display: inline-block;
    background: #fff;
    color: #2a7f62;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.cta-button:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* Benefits List */
.benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}


.benefit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}


.benefit-item img {
    width: 16px;
    margin-right: 8px;
}


 /* Icon Benefits Section */
 .icon-benefits {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
    margin-top: -20px;
}

.icon-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
}

.icon-benefits h2 {
    font-size: 2.5rem;
    color: #2a7f62;
    margin-bottom: 15px;
}

.icon-benefits .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;

}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.icon-card {
    background: white;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.icon-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a7f62;
    font-size: 1.8rem;
}

.icon-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.icon-card p {
    color: #555;
    line-height: 1.6;
}


/* Book Cover Section */
.book-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.book-cover {
    flex: 1;
    text-align: center;
}
.book-cover img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 5px;
}
.book-description {
    flex: 1;
}
.book-description h2 {
    color: #2c3e50;
    font-size: 2em;
    line-height: 1.2;
    margin-top: 0;
}
.book-description p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}
.badges {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}
.badge {
    background: #2a7f62;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}


/* Main Content Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background-color: #f5faf7;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
}
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 40px 0;
}
.benefits {
    flex: 1;
    min-width: 300px;
}
.form-container {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 25px; /* Reduced from 30px */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #2a7f62;
}
h2, h3 {
    color: #2a7f62;
    margin-top: 0;
}
ul {
    margin: 25px 0;
    padding-left: 20px;
}
li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}
li:before {
    content: "✓";
    color: #2a7f62;
    position: absolute;
    left: 0;
    font-weight: bold;
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px; /* Added for consistent spacing */
    gap: 5px;
}
.form-group label {
    font-weight: 600;
    color: #555;
}
input, select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.radio-group {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 5px 0 15px; /* Better vertical spacing */
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}
button {
    padding: 15px;
    background-color: #2a7f62;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: all 0.3s;
    margin-top: 5px; /* Reduced from 10px */
}
button:hover {
    background-color: #2a7f62;
    transform: translateY(-2px);
}
 /* ===== Premium Trust Badges ===== */
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.5rem 0;
    justify-content: center;
  }

  .trust-badge {
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  /* Gradient Colors with Shine Effect */
  .badge-1 { 
    background: linear-gradient(135deg, #5D9C59 0%, #3A7D44 100%);
  }
  .badge-2 { 
    background: linear-gradient(135deg, #4E8CF8 0%, #2A5FCC 100%);
  }
  .badge-3 { 
    background: linear-gradient(135deg, #FF7B54 0%, #E64A19 100%);
  }

  /* Shine Effect on Hover */
  .trust-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255,255,255,0.3) 0%,
      rgba(255,255,255,0) 60%
    );
    transform: rotate(30deg) translate(-20px, -40px);
    transition: all 0.5s ease;
    z-index: -1;
  }

  .trust-badge:hover::after {
    transform: rotate(30deg) translate(20px, 40px);
  }

  /* Subtle Bounce Animation */
  .trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }

  /* Mobile Optimization */
  @media (max-width: 480px) {
    .trust-badge {
      padding: 8px 14px;
      font-size: 13px;
      border-radius: 16px;
    }
  }

.testimonial {
    font-style: italic;
    margin: 20px 0; /* Reduced from 40px */
    padding: 20px; /* Reduced from 25px */
    background: white;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
}
.testimonial:before {
    font-size: 60px;
    color: #2a7f62;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}
.author {
    font-weight: bold;
    color: #2a7f62;
    font-style: normal;
    margin-top: 10px;
    display: block;
}
.guarantee {
    text-align: center;
    color: #666;
    margin-top: 10px; /* Reduced from 15px */
    font-size: 0.9rem; /* Slightly smaller */
    line-height: 1.4;
}


    /* Testimonials Section */
    .testimonials {
        padding: 0px 0px;
        background: #f9f9f9;
        text-align: center;
        margin-top: -40px;
    }


    .testimonials .container {
        max-width: 1200px;
        margin: 0 auto;
    }


    .testimonials h2 {
        font-size: 2.5rem;
        color: #2a7f62;
        /* margin-bottom: 15px; */
    }


    .testimonials .subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 50px;
    }


    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }


    .testimonial-card {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }


    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }


    .rating {
        color: #FFD700;
        margin-bottom: 20px;
    }


    .quote {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 20px;
        font-style: italic;
    }


    .user {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }


    .user img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }


    .user-info h4 {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 5px;
    }


    .user-info p {
        font-size: 0.9rem;
        color: #777;
    }
 

        /* Footer Styles */
        footer {
            background-color: #2a7f62;
            color: white;
            padding: 20px 0;
            text-align: center;
            font-family: Arial, sans-serif;
            border-top: 1px solid #e0e0e0;
        }
        
        .footer-links {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: #0bc98a;
            text-decoration: underline;
        }
        
        .footer-copyright {
            font-size: 12px;
            color: #f8f7f7;
        }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #2a7f62;
        padding: 20px;
        z-index: 100;
    }
    .hero-banner {
      height: 70vh;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }

    h2, h3 {
        color: #2a7f62;
        margin-top: 0;
        margin-top: -20px;
    }
    .hero {
        padding: 80px 20px;
    }
    
    .text-rsiz {
        margin-top: -20px;
        font-size: 16px;
    }
    .hero h1 {
        font-size: 2.2em;
    }
    .icon-grid {
        grid-template-columns: 1fr;
    }
    .book-section {
        flex-direction: column;
        text-align: center;
    }
    .badges {
        justify-content: center;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }


    .content {
        flex-direction: column;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}

