
/* FONT & COLOR DEFINITIONS */
        :root {
            --font-serif-headers: 'Georgia', 'Times New Roman', serif;
            --font-sans-body: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;

            --color-background: #FFFFFF;
            --color-primary-emerald: #28a745;
            --color-text-dark: #343a40;
            --color-text-light: #5a6268;
            --color-surface-mint: #f0fafa;
            --color-border: #dee2e6;
        }

        /* GENERAL STYLES & RESETS */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-text-dark);
            background-color: var(--color-background);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* TYPOGRAPHY */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-serif-headers);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            color: var(--color-text-dark);
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.75rem; }
        p { margin-bottom: 1rem; }

        a {
            color: var(--color-primary-emerald);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #218838;
        }

        strong, b {
            font-weight: 600;
        }

        ul, ol {
            margin-bottom: 1rem;
            padding-left: 20px;
        }

        /* LAYOUT & UTILITIES */
        .cosmic-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        /* HEADER */
        .orbit-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .orbit-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-vault {
            font-family: var(--font-serif-headers);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-text-dark);
        }
        .logo-vault span {
            color: var(--color-primary-emerald);
        }
        .nav-matrix {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        .nav-matrix a {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text-light);
            position: relative;
            padding: 5px 0;
        }
        .nav-matrix a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--color-primary-emerald);
            transition: width 0.3s ease;
        }
        .nav-matrix a:hover::after, .nav-matrix a.active::after {
            width: 100%;
        }

        /* HERO SECTION */
        .nebula-hero {
            padding: 100px 0;
            background-color: var(--color-surface-mint);
            background-image: radial-gradient(var(--color-primary-emerald) 1px, transparent 1px);
            background-size: 20px 20px;
            background-position: -10px -10px;
        }
        .nebula-hero .cosmic-container {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
        }
        .nebula-hero h1 {
            color: var(--color-text-dark);
            margin-bottom: 1.5rem;
        }
        .nebula-hero .subtitle-text {
            font-size: 1.25rem;
            color: var(--color-text-light);
            margin-bottom: 2.5rem;
        }

        /* CTA BUTTON */
        .cta-button {
            display: inline-block;
            background-color: var(--color-primary-emerald);
            color: var(--color-background);
            font-size: 1.1rem;
            font-weight: 600;
            padding: 15px 35px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--color-primary-emerald);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }
        .cta-button:hover {
            background-color: var(--color-background);
            color: var(--color-primary-emerald);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
        }
        
        /* ARTICLE BLOCK */
        .knowledge-stream {
            background-color: var(--color-background);
        }

        .article-title-display {
            font-family: var(--font-sans-body);
            font-size: 1rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text-light);
            margin-bottom: 0.5rem;
        }

        .article-subtitle-display {
            font-family: var(--font-serif-headers);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--color-text-dark);
        }

        .article-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .article-content h2 {
            padding-top: 2.5rem;
            margin-top: 2.5rem;
            border-top: 1px solid var(--color-border);
            font-size: 2rem;
            color: var(--color-primary-emerald);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            color: var(--color-text-dark);
        }
        .article-content ul {
            list-style-type: disc;
            padding-left: 25px;
            margin-bottom: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.75rem;
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .article-content th, .article-content td {
            border: 1px solid var(--color-border);
            padding: 12px 15px;
            text-align: left;
        }
        .article-content th {
            background-color: var(--color-surface-mint);
            font-family: var(--font-sans-body);
            font-weight: 600;
        }
        .article-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .article-content h2:first-of-type {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        /* PRODUCT COMPOSITION (WHAT'S INSIDE) */
        .package-details {
            background-color: var(--color-surface-mint);
        }
        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .package-item-card {
            background-color: var(--color-background);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .package-item-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .package-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            color: var(--color-primary-emerald);
        }
        
        /* HOW IT WORKS */
        .process-flow-section {
            background-color: var(--color-background);
        }
        .steps-container {
            position: relative;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        .step-card {
            text-align: center;
            position: relative;
        }
        .step-number {
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 50%;
            background-color: var(--color-primary-emerald);
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            font-family: var(--font-serif-headers);
        }
        .step-card h3 {
            font-size: 1.5rem;
        }
        .steps-container::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 15%;
            right: 15%;
            height: 2px;
            background-color: var(--color-border);
            border-style: dashed;
        }

        /* FAQ SECTION */
        .faq-zone {
            background-color: var(--color-surface-mint);
        }
        .faq-grid {
            max-width: 800px;
            margin: 40px auto 0;
        }
        .faq-item {
            border-bottom: 1px solid var(--color-border);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            cursor: pointer;
        }
        .faq-question h3 {
            margin-bottom: 0;
            font-size: 1.25rem;
            font-family: var(--font-sans-body);
            font-weight: 500;
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            color: var(--color-primary-emerald);
            transition: transform 0.3s ease;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out, padding 0.5s ease;
        }
        .faq-answer p {
            padding-bottom: 20px;
        }
        .faq-item.active .faq-answer {
            max-height: 500px; /* Adjust as needed */
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* KEY BENEFITS SECTION */
        .benefits-sector {
            background-color: var(--color-background);
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .benefit-card {
            border: 1px solid var(--color-border);
            padding: 30px;
            border-radius: 8px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        .benefit-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            color: var(--color-primary-emerald);
        }


        /* SOCIAL PROOF SECTION */
        .social-proof-realm {
            background-color: var(--color-surface-mint);
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .testimonial-card {
            background-color: var(--color-background);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }
        .testimonial-card p {
            font-style: normal; /* Override default italic */
            color: var(--color-text-light);
            flex-grow: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--color-border);
        }
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .author-name {
            font-weight: 600;
        }
        .author-role {
            font-size: 0.9rem;
            color: var(--color-text-light);
        }
        
        /* FOOTER */
        .quantum-footer {
            background-color: var(--color-text-dark);
            color: #adb5bd;
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #495057;
        }
        .footer-column h4 {
            font-family: var(--font-sans-body);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-background);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        .footer-column a {
            color: #adb5bd;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }
        .footer-column a:hover {
            color: var(--color-background);
            padding-left: 5px;
        }
        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* ANIMATIONS & RESPONSIVENESS */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
        }

        @media (max-width: 768px) {
            .section-padding { padding: 60px 0; }
            .orbit-header-content { flex-direction: column; gap: 15px; }
            .nav-matrix { gap: 20px; }
            .steps-container { grid-template-columns: 1fr; }
            .steps-container::before { display: none; }
            .step-card { margin-bottom: 30px; }
            .step-card:last-child { margin-bottom: 0; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            .cosmic-container { padding: 0 15px; }
            .cta-button { width: 100%; text-align: center; }
            .footer-grid { grid-template-columns: 1fr; }
        }


/* FONT & COLOR DEFINITIONS */
        :root {
            --font-serif-headers: 'Georgia', 'Times New Roman', serif;
            --font-sans-body: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --color-background: #FFFFFF;
            --color-primary-emerald: #28a745;
            --color-text-dark: #343a40;
            --color-text-light: #5a6268;
            --color-surface-mint: #f0fafa;
            --color-border: #dee2e6;
        }

        /* GENERAL STYLES & RESETS */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-text-dark);
            background-color: var(--color-background);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* TYPOGRAPHY */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-serif-headers);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            color: var(--color-text-dark);
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.75rem; }
        p { margin-bottom: 1rem; }

        a {
            color: var(--color-primary-emerald);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #218838;
        }

        strong, b {
            font-weight: 600;
        }

        ul, ol {
            margin-bottom: 1rem;
            padding-left: 20px;
        }

        /* LAYOUT & UTILITIES */
        .cosmic-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .text-center {
            text-align: center;
        }

        /* HEADER */
        .orbit-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .orbit-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-vault {
            font-family: var(--font-serif-headers);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-text-dark);
        }
        .logo-vault span {
            color: var(--color-primary-emerald);
        }
        .nav-matrix {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        .nav-matrix a {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text-light);
            position: relative;
            padding: 5px 0;
        }
        .nav-matrix a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--color-primary-emerald);
            transition: width 0.3s ease;
        }
        .nav-matrix a:hover::after, .nav-matrix a.active::after {
            width: 100%;
        }
        .nav-matrix a.active {
             color: var(--color-text-dark);
        }

        /* FAQ PAGE HERO */
        .faq-hero {
            text-align: center;
            background-color: var(--color-surface-mint);
            padding-top: 80px;
            padding-bottom: 60px;
        }
        .faq-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .faq-hero p {
            font-size: 1.15rem;
            color: var(--color-text-light);
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* FAQ SECTION */
        .faq-zone {
            background-color: var(--color-surface-mint);
        }
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-category-title {
            font-size: 2rem;
            color: var(--color-primary-emerald);
            padding-top: 40px;
            margin-top: 40px;
            margin-bottom: 20px;
            border-top: 1px solid var(--color-border);
        }
        .faq-grid > h2:first-of-type {
            padding-top: 0;
            margin-top: 0;
            border-top: none;
        }
        .faq-item {
            border-bottom: 1px solid var(--color-border);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            cursor: pointer;
        }
        .faq-question h3 {
            margin-bottom: 0;
            font-size: 1.25rem;
            font-family: var(--font-sans-body);
            font-weight: 500;
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            color: var(--color-primary-emerald);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            color: var(--color-text-light);
        }
        .faq-answer p {
            padding-bottom: 20px;
            margin-bottom: 0;
        }
        .faq-item.active .faq-answer {
            max-height: 500px; /* Adjust as needed */
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        /* FOOTER */
        .quantum-footer {
            background-color: var(--color-text-dark);
            color: #adb5bd;
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #495057;
        }
        .footer-column h4 {
            font-family: var(--font-sans-body);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-background);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        .footer-column a {
            color: #adb5bd;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }
        .footer-column a:hover {
            color: var(--color-background);
            padding-left: 5px;
        }
        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }

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

        @media (max-width: 992px) {
            h1, .faq-hero h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .section-padding, .faq-hero { padding-top: 60px; padding-bottom: 60px; }
            .orbit-header-content { flex-direction: column; gap: 15px; }
            .nav-matrix { gap: 20px; justify-content: center; flex-wrap: wrap; }
             .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 480px) {
            h1, .faq-hero h1 { font-size: 2.2rem; }
            .cosmic-container { padding: 0 15px; }
            .footer-grid { grid-template-columns: 1fr; }
        }