
:root {
            --bg-color: #F5F5DC;
            --text-color: #5D4037;
            --accent-color: #808000;
            --card-bg: #FFFFFF;
            --font-heading: 'Georgia', 'Times New Roman', serif;
            --font-body: 'Helvetica', 'Arial', sans-serif;
        }

        /* --- Reset and Base Styles --- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--font-body);
            font-weight: 500; /* Medium weight */
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        /* --- Typography --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 200; /* Thin */
            color: var(--text-color);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.7rem; }
        p { margin-bottom: 1rem; }
        a { color: var(--accent-color); text-decoration: none; }
        i, em { font-style: italic; }

        /* --- Layout & Containers --- */
        .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 6rem 0;
        }

        /* --- Animations --- */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Header --- */
        .main-header {
            padding: 1.5rem 2rem;
            position: absolute;
            width: 100%;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--text-color);
        }

        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        .main-navigation a {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 0.5rem 0;
        }

        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .main-navigation a:hover::after {
            width: 100%;
        }

        /* --- Hero Section --- */
        .hero-unit {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-unit .page-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
        }
        
        .hero-content {
            flex-basis: 55%;
        }

        .hero-content .subtitle {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .hero-content h1 {
            text-shadow: 1px 1px 2px rgba(93, 64, 55, 0.1);
        }

        .hero-cta-group {
            margin-top: 2.5rem;
            display: flex;
            gap: 1rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button.primary {
            background-color: var(--accent-color);
            color: var(--card-bg);
            border: 2px solid var(--accent-color);
        }

        .cta-button.secondary {
            background-color: transparent;
            color: var(--text-color);
            border: 2px solid var(--text-color);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .hero-visual {
            flex-basis: 40%;
            height: 400px;
            background-color: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(93, 64, 55, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }
        
        .hero-visual svg {
            width: 50%;
            height: auto;
            opacity: 0.7;
            color: var(--text-color);
        }

        /* --- Process Section --- */
        .process-flow {
            text-align: center;
        }
        
        .process-title h2 {
            margin-bottom: 4rem;
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 2rem;
        }
        
        .steps-container::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: var(--text-color);
            opacity: 0.2;
        }
        
        .step-item {
            flex-basis: 30%;
            position: relative;
            text-align: center;
        }
        
        .step-number {
            width: 100px;
            height: 100px;
            background-color: var(--card-bg);
            border: 2px solid var(--text-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent-color);
        }
        
        .step-item h3 {
             font-size: 1.5rem;
        }

        /* --- Article Section --- */
        .article-zone {
            background-color: rgba(255, 255, 255, 0.4);
            padding: 4rem 0;
        }
        
        .article-intro {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .article-content h2 {
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
            margin-bottom: 1.5rem;
            margin-top: 2.5rem;
            display: inline-block;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            padding: 0 1rem;
        }
        
        .article-content ul, .article-content ol {
            margin-bottom: 1.5rem;
            padding-left: 3rem;
        }
        
        .article-content li {
            margin-bottom: 0.5rem;
        }
        
        .article-content table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: collapse;
            text-align: left;
        }
        
        .article-content th, .article-content td {
            padding: 1rem;
            border-bottom: 1px solid rgba(93, 64, 55, 0.2);
        }
        
        .article-content th {
            background-color: rgba(93, 64, 55, 0.05);
            font-weight: bold;
        }

        .article-content img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* --- Benefits Section --- */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .benefit-card {
            background-color: var(--card-bg);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            border-left: 6px solid var(--accent-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(93, 64, 55, 0.05);
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(93, 64, 55, 0.1);
        }

        .benefit-icon {
            margin-bottom: 1.5rem;
        }

        .benefit-icon svg {
            width: 48px;
            height: 48px;
            color: var(--accent-color);
        }
        
        .benefit-card h3 {
            margin-bottom: 0.5rem;
        }

        /* --- Social Proof Section --- */
        .reviews-section {
            background-color: var(--bg-color);
        }
        
        .review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .review-card {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 8px;
            position: relative;
            border-top: 6px solid var(--accent-color);
            box-shadow: 0 5px 15px rgba(93, 64, 55, 0.05);
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--accent-color);
            color: var(--card-bg);
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .reviewer-name {
            font-weight: bold;
        }

        /* --- FAQ Section --- */
        .faq-container {
            max-width: 800px;
            margin: 4rem auto 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background-color: var(--card-bg);
            border-radius: 8px;
            border-left: 6px solid var(--accent-color);
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .faq-question:hover {
            color: var(--accent-color);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding: 0 2rem;
        }

        .faq-item.active .faq-answer {
            max-height: 300px; 
            padding: 0 2rem 1.5rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* --- Included Section --- */
        .package-contents {
            display: flex;
            gap: 4rem;
            align-items: center;
            margin-top: 4rem;
        }
        
        .package-visual {
            flex-basis: 40%;
            background-color: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .package-visual svg {
            width: 80%;
            height: auto;
            color: var(--text-color);
        }
        
        .package-list {
            flex-basis: 55%;
        }
        
        .package-list ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .package-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
        }
        
        .package-list .check-icon {
            width: 24px;
            height: 24px;
            color: var(--accent-color);
        }

        /* --- Footer --- */
        .main-footer {
            background-color: #EAE8D9; /* Lighter beige */
            color: var(--text-color);
            padding: 4rem 0 2rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .footer-about {
            flex-basis: 40%;
        }
        
        .footer-about .brand-logo {
            margin-bottom: 1rem;
        }
        
        .footer-links {
            flex-basis: 50%;
            display: flex;
            justify-content: space-around;
            gap: 2rem;
        }
        
        .link-group h4 {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        .link-group ul {
            list-style: none;
        }
        
        .link-group li {
            margin-bottom: 0.75rem;
        }
        
        .link-group a {
            color: var(--text-color);
            opacity: 0.8;
            transition: opacity 0.3s ease, color 0.3s ease;
        }
        
        .link-group a:hover {
            opacity: 1;
            color: var(--accent-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(93, 64, 55, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.2rem; }
            
            .hero-unit .page-wrapper {
                flex-direction: column;
                text-align: center;
            }
            .hero-unit {
                padding-top: 8rem;
                min-height: auto;
            }
            .hero-visual { margin-top: 3rem; }
        }

        @media (max-width: 768px) {
            .page-wrapper { padding: 0 1.5rem; }
            section { padding: 4rem 0; }
            
            .main-header { padding: 1rem 1.5rem; }
            .main-navigation { display: none; } /* Simple hiding for demo purposes */

            .steps-container {
                flex-direction: column;
                gap: 3rem;
            }
             .steps-container::before { display: none; }
            
            .review-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .package-contents {
                flex-direction: column;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                flex-basis: 100%;
                margin-top: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            body { font-size: 15px; }
            .hero-cta-group {
                flex-direction: column;
            }
            
            .review-grid {
                grid-template-columns: 1fr;
            }

            .footer-links {
                flex-direction: column;
                align-items: center;
            }
            .link-group {
                margin-bottom: 2rem;
            }
        }


