
/* --- Root Variables & Base Styles --- */
        :root {
            --primary-color: #6A4C9C;
            --secondary-color: #A486D5;
            --surface-color: #F4F0F9;
            --text-color: #4A4A4A;
            --text-light: #6c757d;
            --bg-color: #FFFFFF;
            --font-serif: 'Georgia', 'Times New Roman', serif;
            --font-sans: 'Helvetica Neue', Arial, sans-serif;
            --border-radius: 12px;
            --transition-speed: 0.4s;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-weight: 300;
            color: var(--text-color);
            background-color: var(--bg-color);
            line-height: 1.7;
            font-size: 16px;
        }

        /* --- Typography & Global Elements --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-serif);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; color: var(--primary-color); }
        h3 { font-size: 1.75rem; }
        h4 { font-size: 1.25rem; }

        p {
            margin-bottom: 1.5rem;
        }

        p:last-of-type {
            margin-bottom: 0;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color var(--transition-speed);
        }

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

        img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 0;
        }

        .section-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 3rem auto;
            text-align: center;
            color: var(--text-light);
        }

        /* --- Buttons --- */
        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            transition: all var(--transition-speed) ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .cta-primary {
            background-color: var(--primary-color);
            color: var(--bg-color);
        }

        .cta-primary:hover {
            background-color: var(--secondary-color);
            color: var(--bg-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 76, 156, 0.2);
        }

        .cta-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .cta-secondary:hover {
            background-color: var(--surface-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* --- Header --- */
        .page-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 5%;
            transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
        }
        
        .page-header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
        }

        .logo {
            font-family: var(--font-serif);
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        
        .main-nav a {
            font-weight: 500;
            color: var(--text-color);
            position: relative;
        }
        
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-color);
            transition: width var(--transition-speed) ease;
        }

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

        /* --- Hero Section --- */
        .hero-section {
            padding-top: 10rem;
            padding-bottom: 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -15%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--surface-color) 0%, rgba(244,240,249,0) 70%);
            z-index: -1;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--surface-color) 0%, rgba(244,240,249,0) 70%);
            z-index: -1;
        }

        .hero-section h1 {
            color: var(--text-color);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 2.5rem auto;
            font-weight: 300;
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 4rem;
        }
        
        .hero-visual {
            width: 90%;
            max-width: 400px;
            height: 200px;
            background: var(--surface-color);
            margin: 0 auto;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e0d8f0;
        }
        
        .hero-visual svg {
            width: 80px;
            height: 80px;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* --- How It Works Section --- */
        .how-it-works-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .step-card {
            background-color: var(--bg-color);
            border: 1px solid #EAEAEA;
            border-radius: var(--border-radius);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 8rem;
            font-family: var(--font-serif);
            font-weight: 700;
            color: var(--surface-color);
            z-index: 1;
        }
        
        .step-counter-decor {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            opacity: 0.3;
        }
        .step-counter-decor::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 4px;
            height: 12px;
            background: var(--secondary-color);
            transform-origin: 50% 100%;
            transform: translate(-50%, -100%) rotate(45deg);
        }

        .step-content {
            position: relative;
            z-index: 2;
        }

        .step-content h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .final-outcome {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            background-color: var(--surface-color);
            padding: 2rem;
            border-radius: var(--border-radius);
        }

        /* --- Benefits Section --- */
        .benefits-section {
            background-color: var(--surface-color);
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        .benefit-item {
            text-align: center;
        }
        .benefit-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-color);
            border-radius: 50%;
            border: 2px solid var(--primary-color);
        }
        .benefit-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--primary-color);
        }
        .benefit-item h4 {
            margin-bottom: 0.5rem;
        }
        .benefit-item p {
            font-size: 0.95rem;
            color: var(--text-light);
        }
        
        /* --- Testimonials Section --- */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        .testimonial-card {
            background-color: var(--surface-color);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            display: flex;
            flex-direction: column;
        }
        .testimonial-text {
            flex-grow: 1;
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .testimonial-text::before {
            content: '“';
            font-family: var(--font-serif);
            font-size: 4rem;
            color: var(--secondary-color);
            opacity: 0.3;
            position: absolute;
            top: -1rem;
            left: -1.5rem;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--bg-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .author-info strong {
            display: block;
        }
        .author-info span {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* --- Final CTA Section --- */
        .final-cta-section {
            background-color: var(--primary-color);
            color: var(--bg-color);
            text-align: center;
            padding: 6rem 1rem;
        }

        .final-cta-section h2 {
            color: var(--bg-color);
            margin-bottom: 1.5rem;
        }
        
        .final-cta-section p {
            max-width: 600px;
            margin: 0 auto 2.5rem auto;
            opacity: 0.9;
        }
        
        .final-cta-button {
             background-color: var(--bg-color);
             color: var(--primary-color);
             font-size: 1.1rem;
             padding: 1.2rem 3rem;
        }
        .final-cta-button:hover {
            background-color: #f0f0f0;
            color: var(--primary-color);
            transform: scale(1.05);
        }
        .trust-elements {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* --- FAQ Section --- */
        .faq-section { background-color: var(--surface-color); }
        .faq-accordion .faq-item {
            border-bottom: 1px solid #e0d8f0;
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            cursor: pointer;
            background: none;
            border: none;
            text-align: left;
        }
        .faq-question h4 {
            margin: 0;
            font-family: var(--font-sans);
            font-weight: 500;
            font-size: 1.1rem;
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform var(--transition-speed) ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }
        .faq-answer p {
            padding: 0 0 1.5rem 0;
            color: var(--text-light);
        }

        /* --- Article Section --- */
        .article-intro {
            text-align: center;
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-light);
            font-family: var(--font-serif);
            margin-bottom: 3rem;
        }

        .article-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .article-content h2 {
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--surface-color);
            font-size: 2rem;
        }

        .article-content p {
            padding: 0 0.5rem;
        }

        .article-content ul, .article-content ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .article-content li {
            margin-bottom: 0.5rem;
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
        }

        .article-content th, .article-content td {
            border: 1px solid #e0d8f0;
            padding: 0.75rem;
            text-align: left;
        }

        .article-content th {
            background-color: var(--surface-color);
            font-weight: 700;
        }
        
        .article-content strong {
            font-weight: 700;
        }

        /* --- "What's Included" Section --- */
        .included-grid {
            display: grid;
             grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .included-card {
            background-color: var(--surface-color);
            padding: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--primary-color);
        }
        .included-card-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--primary-color);
        }
        .included-card-text h4 {
            margin-bottom: 0.5rem;
        }
        .included-card-text p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin: 0;
        }
        
        /* --- Footer --- */
        .page-footer {
            background-color: var(--text-color);
            color: rgba(255, 255, 255, 0.7);
            padding: 5rem 0 2rem 0;
        }
        .footer-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }
        .footer-about h4 {
            font-size: 2rem;
            font-family: var(--font-serif);
            color: var(--bg-color);
            margin-bottom: 1rem;
        }
        .footer-about p {
            font-size: 0.9rem;
        }
        .footer-nav h5 {
            color: var(--bg-color);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-family: var(--font-sans);
            font-weight: 500;
        }
        .footer-nav ul {
            list-style: none;
        }
        .footer-nav li {
            margin-bottom: 0.75rem;
        }
        .footer-nav a {
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-nav a:hover {
            color: var(--bg-color);
            text-decoration: underline;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            padding-top: 2rem;
            margin-top: 4rem;
            font-size: 0.85rem;
        }

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

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

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.2rem; }
            .how-it-works-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-container { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .container { padding: 4rem 0; }
            .header-content { padding: 0 1rem; }
            .main-nav { display: none; /* Implement burger menu in a real project */ }
            .hero-cta { flex-direction: column; align-items: center; }
            .how-it-works-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .footer-container { grid-template-columns: 1fr; }
            .page-footer { text-align: center; }
            .footer-container { text-align: center; }
        }


.sitemap-header {
            background-color: var(--surface-color);
            padding: 10rem 0 4rem 0;
            text-align: center;
        }

        .sitemap-header h1 {
            color: var(--primary-color);
            font-size: 3rem;
        }

        .sitemap-content {
            padding: 4rem 0 6rem 0;
        }

        .sitemap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .sitemap-category h2 {
            font-size: 1.75rem;
            color: var(--text-color);
            font-family: var(--font-sans);
            font-weight: 500;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--surface-color);
        }

        .sitemap-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sitemap-list li {
            margin-bottom: 1rem;
        }

        .sitemap-list a {
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .sitemap-list a::before {
            content: '→';
            color: var(--secondary-color);
            transition: transform 0.3s ease;
        }

        .sitemap-list a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

