:root {
    --primary: #173f3d;
    --secondary: #e5f1ec;
    --accent: #d99a52;
    --light: #f7faf8;
    --dark: #1c2927;
    --muted: #687673;

    --primary: #173f3d;
    --primary-dark: #0f2e2c;
    --secondary: #e5f1ec;
    --accent: #d99a52;
    --light: #f7faf8;
    --dark: #1c2927;
    --muted: #687673;
    --border: #e3ebe7;
    --white: #ffffff;
}

* {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 72px;
}

html {
    overflow-x: hidden;
}


body {
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.6;
    padding-top: 68px;
}


h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
}

p {
    font-size: 1.3rem !important;
}

.navbar {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
}

.brand-dot {
    color: var(--accent);
}



.btn-main {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s ease;
}

.btn-main:hover {
    background: #0f2e2c;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-main {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
}

.hero {
    padding: 70px 0 90px;
    background: linear-gradient(120deg, #f3f8f5 0%, #ffffff 58%, #edf5f0 100%);
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--primary);
}

.hero p {
    color: var(--muted);
}

.hero-image {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 30px;

}




.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    color: var(--primary);


}

.section-text {
    color: var(--muted);

}

.intro-box {
    background: var(--light);
    border-radius: 28px;
    padding: 55px;
}

.what-card {
    height: 100%;
    padding: 35px;
    border: 1px solid #e3ebe7;
    border-radius: 22px;
    background: #fff;
    transition: .3s ease;
}

.what-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.icon-box {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.how-section {
    background: #f7faf8;
}


.step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.step-number {
    flex: 0 0 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

.step p {
    color: var(--muted);

    margin-bottom: 0;
}

ul{
    font-size: 1.3rem !important;
}


.review-card {
    height: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid #e6ece9;
    border-radius: 22px;
}

.stars {
    color: #d99a52;
    letter-spacing: 3px;
}

.review-card p {
    color: var(--muted);

    font-style: italic;
}

.review-author {
    font-weight: 700;
    color: var(--primary);
}

.faq-section {
    background: #f7faf8;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #dfe8e4;
    background: transparent;
}

.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    padding: 24px 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
}

.accordion-body {
    padding: 0 0 24px;
    color: var(--muted);
    font-size: 1.3rem;
}




img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 70px 0;
}


.section-title {
    color: var(--primary);
}


h2 {
    font-size: clamp(1.8rem, 4vw, 3rem) !important;

}

.section-text {
    color: var(--muted);


}

.bg-light {
    background-color: var(--light) !important;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-main {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s ease;
}

.btn-main:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-main {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s ease;
}

.btn-outline-main:hover {
    background: var(--primary);
    color: var(--white);
}

/* =========================================================
   NAVBAR
========================================================= */


.brand-dot {
    color: var(--accent);
}

.nav-link {
    color: #3e4b49 !important;
    font-weight: 500;
    margin: 0 8px;
    transition: .3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* =========================================================
   HERO
========================================================= */




/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    background: var(--primary);
    color: var(--white);
    padding: 22px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
}

.trust-item i {
    color: #e6c28b;
    font-size: 1.3rem;
}

/* =========================================================
   INTRO
========================================================= */

.intro-box {
    background: var(--light);
    border-radius: 28px;
    padding: 55px;
}

/* =========================================================
   WHAT SECTION / GENERAL CARDS
========================================================= */

.what-card {
    height: 100%;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    transition: .3s ease;
}

.what-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.icon-box {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 22px;
}

/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
    background: var(--light);
}

.how-image,
.benefit-image,
.price-image {
    object-fit: cover;
    border-radius: 28px;
    height: 750px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.step-number {
    flex: 0 0 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

.step p {
    color: var(--muted);

    margin-bottom: 0;
}

/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    background: var(--primary);
    color: var(--white);
}

.why-section .section-title {
    color: var(--white);
}

.why-section .section-text {
    color: rgba(255, 255, 255, .78);
}

.why-card {
    padding: 28px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    transition: .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .1);
}

.why-card i {
    font-size: 2rem;
    color: #e6c28b;
}

/* =========================================================
   BENEFITS
========================================================= */

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 18px;
    display: flex;
    gap: 12px;
    color: var(--muted);

}

.benefit-list i {
    color: var(--accent);

}

/* =========================================================
   PERSONALIZED CARE
========================================================= */

.personalized-care {
    background: var(--light);
}

.personalized-card {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.personalized-card:hover {
    transform: translateY(-5px);
}




/* =========================================================
   WHO MAY BENEFIT
========================================================= */

.benefit-card {
    height: 100%;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    transition: .3s ease;
}

.benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

/* ================================
   TRANSPARENCY SECTION
================================ */

.transparency-section {
    background: white;
    position: relative;
    overflow: hidden;
}

/* Optional soft background decoration */
.transparency-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.05);
    top: -160px;
    right: -120px;
    pointer-events: none;
}

.transparency-section .container {
    position: relative;
    z-index: 1;
}

/* Section Label */
.transparency-section .section-label {
    display: inline-block;
   
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #198754;
    margin-bottom: 15px;
}

/* Section Heading */
.transparency-section .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1d2b27;
    margin-bottom: 0;
}

.transparency-section .section-title span {
    color: #198754;
}

/* Paragraph */
.transparency-section .section-text {
    color: #66736e;
    font-size: 1rem;
    line-height: 1.8;
}

/* Feature Cards */
.transparency-card {
    background: #ffffff;
    border: 1px solid rgba(25, 135, 84, 0.10);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.transparency-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(25, 135, 84, 0.25);
}

/* Icon Box */
.transparency-card .icon-box {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #e9f7ef;
    color: #198754;
    font-size: 1.45rem;
    flex-shrink: 0;
}

.transparency-card h3 {
    color: #1d2b27;
  
    font-weight: 700;
  
}

/* Main CTA */
.transparency-section .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 50px;
    background: #198754;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #198754;
    transition: all 0.3s ease;
}

.transparency-section .btn-main:hover {
    background: #146c43;
    border-color: #146c43;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ================================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 991px) {

    .transparency-section .section-title {
        font-size: 2.4rem;
    }

}

@media (max-width: 767px) {

    .transparency-section {
        text-align: center;
    }

   
  

    .transparency-section .btn-main {
        width: 100%;
    }

    .transparency-card {
        text-align: left;
        padding: 24px;
    }

}

@media (max-width: 575px) {

  
    .transparency-card {
        padding: 20px;
    }

    

}

/* =========================================================
   PRICING
========================================================= */

.pricing-section {
    background: var(--light);
}

.price-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.price {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.price span {
    font-size: 3.5rem;
}

.price small {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.price-list li {
    padding: 8px 0;
    border-bottom: 1px solid #edf0ee;
    color: var(--muted);
}

.price-list i {
    color: var(--accent);
    margin-right: 8px;
}

/* =========================================================
   REVIEWS
========================================================= */

.review-card {
    height: 100%;
    padding: 32px;
    background: var(--white);
    border: 1px solid #e6ece9;
    border-radius: 22px;
    transition: .3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.stars {
    color: var(--accent);
    letter-spacing: 3px;
}

.review-card p {
    color: var(--muted);

    font-style: italic;
}

.review-author {
    font-weight: 700;
    color: var(--primary);
}

/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--light);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #dfe8e4;
    background: transparent;
}

.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    padding: 24px 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.accordion-button::after {
    filter: none;
}

.accordion-body {
    padding: 0 0 24px;
    color: var(--muted);

}

/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 90px 0;
    background: linear-gradient(120deg,
            #eaf4ee,
            #f9fbfa);
}

.cta-box {
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    padding: 40px;
}

.cta-box h2 {
    color: var(--white);
}

.cta-box p {
    color: rgba(255, 255, 255, .8);
}



.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #111;
    color: white !important;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #102d2b;
    color: rgba(255, 255, 255, .7);
    padding: 70px 0 25px;
}

footer h3,
footer h3 {
    color: var(--white);
}

footer a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: .3s ease;
}

footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 22px;
    margin-top: 45px;
    font-size: .9rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .intro-box,
    .cta-box {
        padding: 35px 25px;
    }

    .how-image,
    .benefit-image,
    .price-image {
        height: auto;
    }

    .navbar-collapse {
       
        text-align: center;
        gap: 0px !important;
    }

    .nav-link {
        margin: 2px 0;
    }
}

@media (max-width: 767px) {

    .section-padding {
        padding: 50px 0;
    }



    .intro-box {
        border-radius: 20px;
    }

    .price-card {
        padding: 28px 22px;
    }

    .price span {
        font-size: 2.8rem;
    }



    .trust-item {
        justify-content: center;
    }
}

@media (max-width: 575px) {



    .btn-main,
    .btn-outline-main {
        width: 100%;
        text-align: center;
    }

    .hero .d-flex {
        flex-direction: column;
    }

    .what-card,
    .benefit-card,
    .review-card {
        padding: 28px 22px;
    }
}