
/* --- General Setup & Variables --- */
        :root {
            --color-background: #FFFFFF;
            --color-text: #333436;
            --color-cta: #AFFF00;
            --color-cta-text: #222222;
            --color-surface: #F0FAF0;
            --color-surface-glass: rgba(240, 250, 240, 0.6);
            --color-border: rgba(51, 52, 54, 0.1);
            --font-heading: 'Georgia', 'Times New Roman', serif;
            --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            --font-mono: 'Menlo', 'Consolas', 'Monaco', monospace;
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

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

        p {
            margin-bottom: 1.5rem;
        }
        
        a {
            color: var(--color-text);
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        a:hover, a:focus {
            color: #000;
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 4px;
        }

        section {
            padding: 6rem 5%;
            position: relative;
            z-index: 2;
        }

        .container_unique_wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Scroll Animation --- */
        .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        /* --- Header --- */
        .primary_header_nexus {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand_logo_text {
            font-family: var(--font-mono);
            font-weight: bold;
            font-size: 1.5rem;
            letter-spacing: -1px;
        }

        .main_navigation_matrix {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: var(--color-surface-glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid var(--color-border);
        }

        .main_navigation_matrix nav a {
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        
        .main_navigation_matrix nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-cta);
            transition: width 0.3s ease-out;
        }

        .main_navigation_matrix nav a:hover:after, .main_navigation_matrix nav a:focus:after {
            width: 100%;
        }

        .dropdown_container {
            position: relative;
        }

        .dropdown_toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }
        
        .dropdown_toggle svg {
            width: 12px;
            height: 12px;
            transition: transform 0.3s ease;
        }

        .dropdown_container.active .dropdown_toggle svg {
            transform: rotate(180deg);
        }

        .dropdown_menu_content {
            display: none;
            position: absolute;
            top: calc(100% + 15px);
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-surface-glass);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            min-width: 220px;
            z-index: 101;
        }

        .dropdown_container.active .dropdown_menu_content {
            display: block;
        }

        .dropdown_menu_content a {
            display: block;
            padding: 0.75rem 1rem;
            white-space: nowrap;
            border-radius: 8px;
            font-size: 0.95rem;
        }

        .dropdown_menu_content a:hover, .dropdown_menu_content a:focus {
            background-color: var(--color-surface);
            text-decoration: none;
        }

        /* --- Hero Section --- */
        .hero_quantum_field {
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 10rem;
            background: radial-gradient(circle at 10% 20%, var(--color-surface), transparent 50%),
                        radial-gradient(circle at 80% 90%, var(--color-surface), transparent 50%);
        }

        .hero_quantum_field .container_unique_wrapper {
            max-width: 900px;
        }

        .hero_quantum_field h1 {
            color: #1a1a1a;
        }

        .hero_quantum_field p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 1.5rem auto 2.5rem;
            line-height: 1.8;
        }

        .cta_button_primary {
            display: inline-block;
            background-color: var(--color-cta);
            color: var(--color-cta-text);
            font-family: var(--font-body);
            font-weight: bold;
            font-size: 1.1rem;
            padding: 1rem 3rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition-smooth);
            border: 2px solid var(--color-cta);
            box-shadow: 0 5px 15px rgba(175, 255, 0, 0.4);
            text-decoration: none;
        }

        .cta_button_primary:hover, .cta_button_primary:focus {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(175, 255, 0, 0.6);
            text-decoration: none;
            color: var(--color-cta-text);
        }

        /* --- Features/Benefits Section --- */
        .benefits_grid_system {
            background-color: var(--color-background);
        }
        .benefits_grid_system .container_unique_wrapper > h2 {
            text-align: center;
            margin-bottom: 4rem;
        }
        .grid_container_3col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .benefit_card_glass {
            background: var(--color-surface-glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            border: 1px solid var(--color-border);
            transition: var(--transition-smooth);
        }
        
        .benefit_card_glass:hover {
            transform: translateY(-10px);
            border-color: rgba(51, 52, 54, 0.2);
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        .benefit_icon_wrapper {
            height: 60px;
            width: 60px;
            border-radius: 50%;
            background: var(--color-background);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            box-shadow: 0 0 0 8px var(--color-surface);
        }
        .benefit_icon_wrapper svg {
            width: 30px;
            height: 30px;
            color: var(--color-text);
        }

        .benefit_card_glass h3 {
            margin-bottom: 0.75rem;
        }

        /* --- Social Proof Section --- */
        .social_proof_cluster {
            background-color: var(--color-surface);
        }
        .social_proof_cluster .container_unique_wrapper > h2 {
            text-align: center;
            margin-bottom: 4rem;
        }
        .testimonial_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .testimonial_card {
            background-color: var(--color-background);
            padding: 2rem;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--color-border);
        }
        .testimonial_card p {
            flex-grow: 1;
            font-style: italic;
        }
        .testimonial_author_info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--color-border);
        }
        .author_avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--color-cta);
            color: var(--color-cta-text);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
            font-family: var(--font-heading);
        }
        .author_name {
            font-weight: bold;
        }
        .author_result {
            font-size: 0.9rem;
            color: #666;
        }

        /* --- Step-by-Step Process Section --- */
        .process_timeline_flow .container_unique_wrapper > h2 {
            text-align: center;
            margin-bottom: 5rem;
        }
        .timeline_container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
        }
        .timeline_container::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 25px;
            height: calc(100% - 50px);
            width: 2px;
            background: var(--color-border);
            z-index: -1;
        }

        .timeline_step {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            position: relative;
            padding-left: 70px;
        }
        .timeline_step_number {
            position: absolute;
            left: 0;
            top: -5px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--color-background);
            border: 2px solid var(--color-cta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--color-text);
        }
         .timeline_step_content h3 { margin-bottom: 0.5rem; }
         .timeline_step_content p { margin-bottom: 0; }

        /* --- Article Block Section --- */
        .article_deep_dive {
            background-color: var(--color-surface);
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .article_deep_dive .container_unique_wrapper {
            background: var(--color-background);
            padding: 4rem 5%;
            border-radius: 20px;
            border: 1px solid var(--color-border);
        }

        .article_intro_title {
            font-family: var(--font-mono);
            text-align: center;
            margin-bottom: 1rem;
            color: #888;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .article_intro_subtitle {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem auto;
            line-height: 1.5;
        }
        
        .article_main_content {
            max-width: 800px;
            margin: 0 auto;
        }

        .article_main_content h2 {
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--color-surface);
            padding-bottom: 0.5rem;
        }
        .article_main_content p,
        .article_main_content ul,
        .article_main_content ol,
        .article_main_content table {
            margin-bottom: 1.5rem;
        }
        .article_main_content ul, .article_main_content ol {
            padding-left: 2rem;
        }
        .article_main_content li {
            margin-bottom: 0.75rem;
        }
        .article_main_content strong, .article_main_content b {
            font-weight: 700;
        }
        .article_main_content img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-top: 1rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--color-border);
        }

        .article_main_content table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .article_main_content th, .article_main_content td {
            text-align: left;
            padding: 0.75rem;
            border-bottom: 1px solid var(--color-border);
        }
        .article_main_content th {
            font-family: var(--font-heading);
            background-color: var(--color-surface);
        }
        .article_main_content td:first-child {
            font-family: var(--font-mono);
            font-weight: 600;
        }

        /* --- FAQ Section --- */
        .faq_knowledge_vault .container_unique_wrapper > h2 {
            text-align: center;
            margin-bottom: 4rem;
        }
        .faq_accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq_item {
            border-bottom: 1px solid var(--color-border);
        }
        .faq_question {
            cursor: pointer;
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 1.25rem;
            font-weight: 500;
        }
        .faq_question_icon {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .faq_item.active .faq_question_icon {
            transform: rotate(45deg);
        }
        .faq_answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 1rem;
        }

        /* --- Footer --- */
        .main_footer_structure {
            background-color: var(--color-text);
            color: #aab;
            padding: 5rem 5% 2rem 5%;
            font-size: 0.9rem;
        }
        .footer_grid_layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer_column h4 {
            font-family: var(--font-mono);
            color: #fff;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        .footer_column ul {
            list-style: none;
        }
        .footer_column li {
            margin-bottom: 0.75rem;
        }
        .footer_column a {
            color: #aab;
        }
        .footer_column a:hover {
            color: #fff;
            text-decoration-color: var(--color-cta);
        }
        .footer_bottom_row {
            padding-top: 2rem;
            text-align: center;
            opacity: 0.6;
        }

        /* Responsive Adjustments */
        @media (max-width: 900px) {
            .main_navigation_matrix { display: none; } /* Simplified for example, real solution would be a mobile menu */
            .timeline_container::before { left: 5%; }
            .timeline_step { padding-left: calc(5% + 40px); }
            .timeline_step_number { left: 5%; transform: translateX(-50%); }
        }

        @media (max-width: 768px) {
            section { padding: 4rem 5%; }
            .hero_quantum_field { padding-top: 8rem; }
            .timeline_container::before { display: none; }
            .timeline_step { padding-left: 0; }
            .timeline_step_number { position: static; transform: none; margin-bottom: 1rem; }
            .timeline_step { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .article_deep_dive .container_unique_wrapper { padding: 2rem 5%; }
            .footer_grid_layout { grid-template-columns: 1fr; }
        }


/* --- General Setup & Variables --- */
        :root {
            --color-background: #FFFFFF;
            --color-text: #333436;
            --color-cta: #AFFF00;
            --color-cta-text: #222222;
            --color-surface: #F0FAF0;
            --color-surface-glass: rgba(240, 250, 240, 0.6);
            --color-border: rgba(51, 52, 54, 0.1);
            --font-heading: 'Georgia', 'Times New Roman', serif;
            --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            --font-mono: 'Menlo', 'Consolas', 'Monaco', monospace;
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

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

        p {
            margin-bottom: 1.5rem;
        }
        
        a {
            color: var(--color-text);
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        a:hover, a:focus {
            color: #000;
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 4px;
        }

        section {
            padding: 6rem 5%;
            position: relative;
            z-index: 2;
        }
        .container_unique_wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* --- Scroll Animation --- */
       .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* --- Header --- */
       .primary_header_nexus {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .brand_logo_text {
            font-family: var(--font-mono);
            font-weight: bold;
            font-size: 1.5rem;
            letter-spacing: -1px;
        }
        .main_navigation_matrix {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: var(--color-surface-glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid var(--color-border);
        }
        .main_navigation_matrix nav a {
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }
                .main_navigation_matrix nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-cta);
            transition: width 0.3s ease-out;
        }
        .main_navigation_matrix nav a:hover:after,.main_navigation_matrix nav a:focus:after {
            width: 100%;
        }
        .dropdown_container {
            position: relative;
        }
        .dropdown_toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }
                .dropdown_toggle svg {
            width: 12px;
            height: 12px;
            transition: transform 0.3s ease;
        }
        .dropdown_container.active .dropdown_toggle svg {
            transform: rotate(180deg);
        }
        .dropdown_menu_content {
            display: none;
            position: absolute;
            top: calc(100% + 15px);
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-surface-glass);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            min-width: 220px;
            z-index: 101;
        }
        .dropdown_container.active .dropdown_menu_content {
            display: block;
        }
        .dropdown_menu_content a {
            display: block;
            padding: 0.75rem 1rem;
            white-space: nowrap;
            border-radius: 8px;
            font-size: 0.95rem;
        }
        .dropdown_menu_content a:hover,.dropdown_menu_content a:focus {
            background-color: var(--color-surface);
            text-decoration: none;
        }
        
        /* --- Hero Section --- */
       .hero_quantum_field {
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 10rem;
            background: radial-gradient(circle at 10% 20%, var(--color-surface), transparent 50%),
                        radial-gradient(circle at 80% 90%, var(--color-surface), transparent 50%);
        }
        .hero_quantum_field .container_unique_wrapper {
            max-width: 900px;
        }
        .hero_quantum_field h1 {
            color: #1a1a1a;
        }
        .hero_quantum_field p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 1.5rem auto 2.5rem;
            line-height: 1.8;
        }
        .cta_button_primary {
            display: inline-block;
            background-color: var(--color-cta);
            color: var(--color-cta-text);
            font-family: var(--font-body);
            font-weight: bold;
            font-size: 1.1rem;
            padding: 1rem 3rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition-smooth);
            border: 2px solid var(--color-cta);
            box-shadow: 0 5px 15px rgba(175, 255, 0, 0.4);
            text-decoration: none;
        }
        .cta_button_primary:hover,.cta_button_primary:focus {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(175, 255, 0, 0.6);
            text-decoration: none;
            color: var(--color-cta-text);
        }
        
        /* --- Article Block Section --- */
       .article_deep_dive {
            padding-top: 0;
            padding-bottom: 5rem;
            background-color: var(--color-background);
        }
        .article_deep_dive .container_unique_wrapper {
            background: var(--color-background);
            padding: 4rem 5%;
            border-radius: 20px;
            border: 1px solid var(--color-border);
            max-width: 1000px;
            margin-top: -80px;
            position: relative;
            z-index: 5;
        }
                .article_main_content {
            max-width: 800px;
            margin: 0 auto;
        }
        .article_main_content h2 {
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--color-surface);
            padding-bottom: 0.5rem;
            font-size: 1.75rem;
        }
       .article_main_content p,
       .article_main_content ul,
       .article_main_content ol {
            margin-bottom: 1.5rem;
        }
       .article_main_content ul,.article_main_content ol {
            padding-left: 2rem;
        }
       .article_main_content li {
            margin-bottom: 0.75rem;
        }
       .article_main_content strong,.article_main_content b {
            font-weight: 700;
        }

        /* --- Footer --- */
       .main_footer_structure {
            background-color: var(--color-text);
            color: #aab;
            padding: 5rem 5% 2rem 5%;
            font-size: 0.9rem;
        }
       .footer_grid_layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
       .footer_column h4 {
            font-family: var(--font-mono);
            color: #fff;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
       .footer_column ul {
            list-style: none;
        }
       .footer_column li {
            margin-bottom: 0.75rem;
        }
       .footer_column a {
            color: #aab;
        }
       .footer_column a:hover {
            color: #fff;
            text-decoration-color: var(--color-cta);
        }
       .footer_bottom_row {
            padding-top: 2rem;
            text-align: center;
            opacity: 0.6;
        }
        
        /** -- Additional Styles for this page -- */
        .page_header_simple {
            background-color: var(--color-surface);
            padding: 10rem 5% 8rem;
            text-align: center;
            z-index: 1;
        }
        .page_header_simple h1 {
            margin-bottom: 0.5rem;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
        }
        .page_header_simple p {
            color: #666;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0;
        }
        .article_deep_dive {
            padding-top: 0;
        }


        /* Responsive Adjustments */
        @media (max-width: 900px) {
           .main_navigation_matrix { display: none; }
        }
        @media (max-width: 768px) {
            section { padding: 4rem 5%; }
           .article_deep_dive .container_unique_wrapper { padding: 2rem 5%; }
           .footer_grid_layout { grid-template-columns: 1fr; }
           .page_header_simple {
                padding: 8rem 5% 6rem;
           }
            .article_deep_dive .container_unique_wrapper {
              margin-top: -60px;
            }
        }

/* --- General Setup & Variables --- */
        :root {
            --color-background: #FFFFFF;
            --color-text: #333436;
            --color-cta: #AFFF00;
            --color-cta-text: #222222;
            --color-surface: #F0FAF0;
            --color-surface-glass: rgba(240, 250, 240, 0.6);
            --color-border: rgba(51, 52, 54, 0.1);
            --font-heading: 'Georgia', 'Times New Roman', serif;
            --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            --font-mono: 'Menlo', 'Consolas', 'Monaco', monospace;
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

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

        p {
            margin-bottom: 1.5rem;
        }
        
        .faq_answer p {
            margin-bottom: 0;
        }

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

        a:hover, a:focus {
            color: #000;
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 4px;
        }

        section {
            padding: 6rem 5%;
            position: relative;
            z-index: 2;
        }
        .container_unique_wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Scroll Animation --- */
       .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Header --- */
       .primary_header_nexus {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .brand_logo_text {
            font-family: var(--font-mono);
            font-weight: bold;
            font-size: 1.5rem;
            letter-spacing: -1px;
        }
        .main_navigation_matrix {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: var(--color-surface-glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid var(--color-border);
        }
        .main_navigation_matrix nav a {
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main_navigation_matrix nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-cta);
            transition: width 0.3s ease-out;
        }
        .main_navigation_matrix nav a:hover:after,.main_navigation_matrix nav a:focus:after {
            width: 100%;
        }
        .dropdown_container {
            position: relative;
        }
        .dropdown_toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }
        .dropdown_toggle svg {
            width: 12px;
            height: 12px;
            transition: transform 0.3s ease;
        }
        .dropdown_container.active .dropdown_toggle svg {
            transform: rotate(180deg);
        }
        .dropdown_menu_content {
            display: none;
            position: absolute;
            top: calc(100% + 15px);
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-surface-glass);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            min-width: 220px;
            z-index: 101;
        }
        .dropdown_container.active .dropdown_menu_content {
            display: block;
        }
        .dropdown_menu_content a {
            display: block;
            padding: 0.75rem 1rem;
            white-space: nowrap;
            border-radius: 8px;
            font-size: 0.95rem;
        }
        .dropdown_menu_content a:hover,.dropdown_menu_content a:focus {
            background-color: var(--color-surface);
            text-decoration: none;
        }

        /* --- Page Hero Banner (for subpages) --- */
        .page_hero_banner {
            padding: 10rem 5% 5rem;
            text-align: center;
            background-color: var(--color-surface);
        }
        .page_hero_banner h1 {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .page_hero_banner p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 1.5rem auto 0;
            color: #555;
        }

        /* --- FAQ Section --- */
       .faq_knowledge_vault {
            padding-bottom: 6rem;
            padding-top: 0;
       }
       .faq_knowledge_vault.container_unique_wrapper > h2 {
            text-align: center;
            margin-bottom: 4rem;
        }
       .faq_accordion {
            max-width: 800px;
            margin: 0 auto;
        }
       .faq_item {
            border-bottom: 1px solid var(--color-border);
        }
       .faq_question {
            cursor: pointer;
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 1.25rem;
            font-weight: 500;
        }
       .faq_question_icon {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
       .faq_item.active .faq_question_icon {
            transform: rotate(45deg);
        }
       .faq_answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 1rem;
            color: #555;
            line-height: 1.8;
        }
        
        /* --- Footer --- */
       .main_footer_structure {
            background-color: var(--color-text);
            color: #aab;
            padding: 5rem 5% 2rem 5%;
            font-size: 0.9rem;
        }
       .footer_grid_layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
       .footer_column h4 {
            font-family: var(--font-mono);
            color: #fff;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
       .footer_column ul {
            list-style: none;
        }
       .footer_column li {
            margin-bottom: 0.75rem;
        }
       .footer_column a {
            color: #aab;
        }
       .footer_column a:hover {
            color: #fff;
            text-decoration-color: var(--color-cta);
        }
       .footer_bottom_row {
            padding-top: 2rem;
            text-align: center;
            opacity: 0.6;
        }

        /* Responsive Adjustments */
        @media (max-width: 900px) {
           .main_navigation_matrix { display: none; }
        }

        @media (max-width: 768px) {
            section { padding: 4rem 5%; }
            .page_hero_banner { padding: 8rem 5% 4rem; }
            .faq_knowledge_vault { padding-top: 4rem; }
            .footer_grid_layout { grid-template-columns: 1fr; }
        }

