
:root {
            --dark-green: #1a3a3a;
            --lighter-green: #204545;
            --cream: #f5f5dc;
            --mint: #bdfcc9;
            --gold: #ffd700;
            --font-serif: Georgia, 'Times New Roman', Times, serif;
            --font-sans: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--dark-green);
            color: var(--mint);
            font-family: var(--font-sans);
            line-height: 1.7;
            font-size: 16px;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-serif);
            color: var(--cream);
            line-height: 1.3;
            font-weight: 700;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

        p {
            margin-bottom: 1rem;
            max-width: none;
        }

        a {
            color: var(--mint);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--gold);
        }

        .container-fluid {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--gold);
            color: var(--dark-green);
            padding: 1rem 2.5rem;
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background-color: #ffeb80;
            color: var(--dark-green);
        }

        /* --- Scroll Animation --- */
        .scroll-animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .scroll-animate.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* --- Header & Navigation --- */
        .page-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(26, 58, 58, 0.8), rgba(26, 58, 58, 0));
            transition: background-color 0.3s ease;
        }

        .page-header.scrolled {
             background-color: rgba(26, 58, 58, 0.95);
             backdrop-filter: blur(5px);
        }
        
        .logo-mark {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            color: var(--cream);
            font-weight: 700;
        }

        .nav-toggle {
            width: 30px;
            height: 22px;
            position: relative;
            cursor: pointer;
            z-index: 1002;
            background: none;
            border: none;
        }

        .nav-toggle span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--cream);
            border-radius: 3px;
            left: 0;
            transition: all 0.35s ease;
        }

        .nav-toggle span:nth-child(1) { top: 0; }
        .nav-toggle span:nth-child(2) { top: 9px; }
        .nav-toggle span:nth-child(3) { top: 18px; }
        
        .nav-overlay.active .nav-toggle span:nth-child(1) {
            top: 9px;
            transform: rotate(45deg);
        }
        .nav-overlay.active .nav-toggle span:nth-child(2) {
            opacity: 0;
        }
        .nav-overlay.active .nav-toggle span:nth-child(3) {
            top: 9px;
            transform: rotate(-45deg);
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(20, 45, 45, 0.98);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0s 0.5s;
            z-index: 1001;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
            transition-delay: 0s;
        }
        
        .main-navigation ul {
            list-style: none;
            text-align: center;
        }
        
        .main-navigation li {
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .nav-overlay.active .main-navigation li {
            transform: translateY(0);
            opacity: 1;
        }
        
        .main-navigation a {
            font-family: var(--font-serif);
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            color: var(--cream);
            padding: 0.5rem 1rem;
            display: block;
        }
        .main-navigation a:hover {
            color: var(--gold);
        }

        .main-navigation .nav-group {
            margin-top: 2rem;
        }
        .main-navigation .nav-group a {
            font-size: 1.2rem;
            font-family: var(--font-sans);
            color: var(--mint);
        }

        .nav-overlay.active .main-navigation li:nth-child(1) { transition-delay: 0.2s; }
        .nav-overlay.active .main-navigation li:nth-child(2) { transition-delay: 0.3s; }
        .nav-overlay.active .main-navigation li:nth-child(3) { transition-delay: 0.4s; }
        .nav-overlay.active .main-navigation li:nth-child(4) { transition-delay: 0.5s; }
        .nav-overlay.active .main-navigation li:nth-child(5) { transition-delay: 0.6s; }


        /* --- Hero Section --- */
        .hero-banner {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 6rem;
        }
        .hero-content {
            max-width: 900px;
        }
        .hero-content p {
            font-size: 1.25rem;
            color: var(--mint);
            max-width: 700px;
            margin: 1.5rem auto 2.5rem;
        }

        /* --- Tiled Sections --- */
        .tiled-card {
            background-color: var(--lighter-green);
            padding: 2.5rem;
            margin-bottom: 1.5rem;
            border-radius: 12px;
        }

        /* --- How-It-Works Section --- */
        .timeline-path {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .timeline-step {
            position: relative;
            padding-left: 50px;
        }
        .timeline-step::before {
            content: attr(data-step);
            position: absolute;
            left: 0;
            top: 0;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: var(--dark-green);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-weight: 700;
            border: 2px solid var(--gold);
        }
        .timeline-step h3 { color: var(--gold); margin-bottom: 0.5rem; }

        /* --- What's Included Section --- */
        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .included-item {
            text-align: center;
        }
        .included-item .icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* --- Benefits/Transformation Section --- */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .benefit-card {
            background: var(--lighter-green);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
        }
        .benefit-card h3 {
            margin: 1rem 0 0.5rem;
        }
        .benefit-icon {
            width: 60px;
            height: 60px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
        }

        /* --- Social Proof Section --- */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }
        .testimonial-card {
            background: var(--lighter-green);
            padding: 2rem;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
        }
        .testimonial-card p {
            flex-grow: 1;
            font-style: normal;
        }
        .testimonial-card p::before {
            content: '“';
            font-family: var(--font-serif);
            font-size: 3rem;
            color: var(--gold);
            float: left;
            line-height: 1;
            margin-right: 0.5rem;
            margin-top: -0.5rem;
        }
        .testimonial-author {
            margin-top: 1.5rem;
            font-weight: 700;
            color: var(--cream);
        }
        .testimonial-author span {
            display: block;
            font-weight: 400;
            color: var(--mint);
            font-size: 0.9rem;
        }
        
        /* --- Article Section --- */
        .article-container {
            background-color: var(--lighter-green);
            padding: 3rem;
            border-radius: 12px;
        }
        .article-pre-title {
            color: var(--gold);
            font-family: var(--font-sans);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        .article-subtitle {
            font-size: 1.2rem;
            color: var(--mint);
            max-width: 800px;
            margin-bottom: 3rem;
        }
        
        .article-content h2 {
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gold);
            display: inline-block;
        }
        .article-content p { margin-bottom: 1.5rem; }
        .article-content ul, .article-content ol {
            margin-left: 20px;
            margin-bottom: 1.5rem;
        }
        .article-content li { margin-bottom: 0.5rem; }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        .article-content th, .article-content td {
            border: 1px solid var(--dark-green);
            padding: 0.8rem;
            text-align: left;
        }
        .article-content th {
            background-color: var(--dark-green);
            color: var(--cream);
            font-family: var(--font-serif);
        }
        .article-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .article-content strong, .article-content b {
            color: var(--cream);
            font-weight: 700;
        }

        /* --- FAQ Section --- */
        .faq-item {
            background: var(--lighter-green);
            margin-bottom: 1rem;
            border-radius: 8px;
        }
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--cream);
            font-family: var(--font-serif);
            position: relative;
        }
        .faq-question::after {
            content: '+';
            font-size: 2rem;
            color: var(--gold);
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding: 0 1.5rem;
        }

        /* --- Footer --- */
        .page-footer {
            background-color: var(--lighter-green);
            color: var(--mint);
            padding: 4rem 1.5rem 2rem;
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 1px solid var(--dark-green);
            padding-bottom: 3rem;
            margin-bottom: 2rem;
        }
        .footer-column h4 {
            color: var(--gold);
            font-family: var(--font-sans);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 0.8rem;
        }
        .footer-column a {
            color: var(--mint);
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.9rem;
            color: rgba(189, 252, 201, 0.7);
        }
        .footer-logo {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--cream);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .timeline-path {
                grid-template-columns: repeat(4, 1fr);
            }
            .timeline-step {
                padding-left: 0;
                padding-top: 60px;
                text-align: center;
            }
            .timeline-step::before {
                top: 0;
                left: 50%;
                transform: translateX(-50%);
            }
            .timeline-step::after {
                content: '';
                position: absolute;
                top: 18px;
                left: 50%;
                width: 100%;
                height: 2px;
                background-color: var(--gold);
                z-index: -1;
            }
            .timeline-path .timeline-step:last-child::after {
                display: none;
            }
        }


.page-banner {
            min-height: 50vh;
            padding-top: 8rem;
            text-align: center;
        }
        .page-banner .hero-content {
            max-width: 800px;
        }
        .article-content h3 {
            color: var(--gold);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-family: var(--font-serif);
        }

:root {
            --dark-green: #1a3a3a;
            --lighter-green: #204545;
            --cream: #f5f5dc;
            --mint: #bdfcc9;
            --gold: #ffd700;
            --font-serif: Georgia, 'Times New Roman', Times, serif;
            --font-sans: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--dark-green);
            color: var(--mint);
            font-family: var(--font-sans);
            line-height: 1.7;
            font-size: 16px;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-serif);
            color: var(--cream);
            line-height: 1.3;
            font-weight: 700;
        }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        p {
            margin-bottom: 1rem;
            max-width: none;
        }
        a {
            color: var(--mint);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--gold);
        }
        .container-fluid {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--gold);
            color: var(--dark-green);
            padding: 1rem 2.5rem;
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
            border: none;
            cursor: pointer;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            background-color: #ffeb80;
            color: var(--dark-green);
        }
        .scroll-animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .scroll-animate.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .page-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(26, 58, 58, 0.8), rgba(26, 58, 58, 0));
            transition: background-color 0.3s ease;
        }
        .page-header.scrolled {
             background-color: rgba(26, 58, 58, 0.95);
             backdrop-filter: blur(5px);
        }
        .logo-mark {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            color: var(--cream);
            font-weight: 700;
        }
        .nav-toggle {
            width: 30px;
            height: 22px;
            position: relative;
            cursor: pointer;
            z-index: 1002;
            background: none;
            border: none;
        }
        .nav-toggle span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--cream);
            border-radius: 3px;
            left: 0;
            transition: all 0.35s ease;
        }
        .nav-toggle span:nth-child(1) { top: 0; }
        .nav-toggle span:nth-child(2) { top: 9px; }
        .nav-toggle span:nth-child(3) { top: 18px; }
        .nav-overlay.active .nav-toggle span:nth-child(1) {
            top: 9px;
            transform: rotate(45deg);
        }
        .nav-overlay.active .nav-toggle span:nth-child(2) {
            opacity: 0;
        }
        .nav-overlay.active .nav-toggle span:nth-child(3) {
            top: 9px;
            transform: rotate(-45deg);
        }
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(20, 45, 45, 0.98);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0s 0.5s;
            z-index: 1001;
        }
        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
            transition-delay: 0s;
        }
        .main-navigation ul {
            list-style: none;
            text-align: center;
        }
        .main-navigation li {
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }
        .nav-overlay.active .main-navigation li {
            transform: translateY(0);
            opacity: 1;
        }
        .main-navigation a {
            font-family: var(--font-serif);
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            color: var(--cream);
            padding: 0.5rem 1rem;
            display: block;
        }
        .main-navigation a:hover {
            color: var(--gold);
        }
        .main-navigation .nav-group {
            margin-top: 2rem;
        }
        .main-navigation .nav-group a {
            font-size: 1.2rem;
            font-family: var(--font-sans);
            color: var(--mint);
        }
        .nav-overlay.active .main-navigation li:nth-child(1) { transition-delay: 0.2s; }
        .nav-overlay.active .main-navigation li:nth-child(2) { transition-delay: 0.3s; }
        .nav-overlay.active .main-navigation li:nth-child(3) { transition-delay: 0.4s; }
        .nav-overlay.active .main-navigation li:nth-child(4) { transition-delay: 0.5s; }
        .nav-overlay.active .main-navigation li:nth-child(5) { transition-delay: 0.6s; }
        .hero-content {
            max-width: 900px;
        }
        .hero-content p {
            font-size: 1.25rem;
            color: var(--mint);
            max-width: 700px;
            margin: 1.5rem auto 2.5rem;
        }
        .faq-item {
            background: var(--lighter-green);
            margin-bottom: 1rem;
            border-radius: 8px;
        }
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--cream);
            font-family: var(--font-serif);
            position: relative;
        }
        .faq-question::after {
            content: '+';
            font-size: 2rem;
            color: var(--gold);
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding: 0 1.5rem;
        }
        .faq-answer p {
            max-width: 80ch;
        }
        .page-footer {
            background-color: var(--lighter-green);
            color: var(--mint);
            padding: 4rem 1.5rem 2rem;
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 1px solid var(--dark-green);
            padding-bottom: 3rem;
            margin-bottom: 2rem;
        }
        .footer-column h4 {
            color: var(--gold);
            font-family: var(--font-sans);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 0.8rem;
        }
        .footer-column a {
            color: var(--mint);
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.9rem;
            color: rgba(189, 252, 201, 0.7);
        }
        .footer-logo {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--cream);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .page-title-section {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 8rem;
            padding-bottom: 2rem;
        }




.page-title-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: var(--lighter-green);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    color: var(--mint);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-family: var(--font-serif);
    flex-grow: 1;
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--mint);
    line-height: 1.6;
    margin-bottom: 0;
}
