
/* --- CSS RESET & BASIC SETUP --- */
        :root {
            --color-background: #FFFFFF;
            --color-text: #1a1a1a;
            --color-primary-cta: #FFD700;
            --color-primary-cta-hover: #f0c800;
            --color-surface: #F8F8F8;
            --color-border: #EAEAEA;

            --font-headings: 'Georgia', 'Times New Roman', serif;
            --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;

            --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 12px 30px rgba(0, 0, 0, 0.1);
            --border-radius-main: 12px;
        }

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

        html {
            scroll-behavior: smooth;
        }

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

        /* --- TYPOGRAPHY & GENERAL STYLES --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-headings);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.75em;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.75rem; }
        p { margin-bottom: 1.5em; }
        a { color: var(--color-text); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: var(--color-primary-cta-hover); }

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

        /* --- ANIMATION --- */
        .revealable {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

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

        /* --- HEADER & NAVIGATION --- */
        .site-header {
            position: fixed;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 4rem);
            max-width: 1200px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--border-radius-main);
            box-shadow: var(--shadow-soft);
        }

        .site-logo {
            font-family: var(--font-headings);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .site-nav-list {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }

        .site-nav-item a, .dropdown-toggle {
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.5rem 0;
            letter-spacing: 0.5px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .dropdown-toggle .arrow {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background-color: var(--color-background);
            box-shadow: var(--shadow-medium);
            border-radius: var(--border-radius-main);
            padding: 1rem;
            min-width: 220px;
            list-style: none;
            z-index: 1001;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .dropdown.open .dropdown-menu {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .dropdown.open .dropdown-toggle .arrow {
            transform: rotate(180deg);
        }
        
        .dropdown-menu-item {
            margin-bottom: 0.5rem;
        }

        .dropdown-menu-item:last-child {
            margin-bottom: 0;
        }

        .dropdown-menu-item a {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            transition: background-color 0.2s ease;
        }
        
        .dropdown-menu-item a:hover {
            background-color: var(--color-surface);
            color: var(--color-text);
        }

        /* --- CTA BUTTON --- */
        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-family: var(--font-headings);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-text);
            background-color: var(--color-primary-cta);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-align: center;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .cta-button:hover {
            background-color: var(--color-primary-cta-hover);
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        /* --- HERO SECTION --- */
        .hero {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
        }
        
        .hero-content {
            max-width: 900px;
        }

        .hero h1 {
            color: var(--color-text);
            letter-spacing: -1px;
            margin-bottom: 1rem;
        }
        
        .hero-subheading {
            font-size: 1.25rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 2.5rem auto;
        }
        
        .hero-visual-placeholder {
            margin-top: 3rem;
            height: 80px;
            background: linear-gradient(90deg, var(--color-surface), #fff, var(--color-surface));
            border-radius: var(--border-radius-main);
            position: relative;
            overflow: hidden;
        }
        .hero-visual-placeholder::before {
            content:'';
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 100%;
            background: var(--color-primary-cta);
            animation: scanner 4s linear infinite;
        }
        @keyframes scanner {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(1800%); } /* 900px width / 50px * 100% */
        }
        

        /* --- FLOATING CARD STYLES --- */
        .floating-card {
            background-color: var(--color-background);
            padding: 2.5rem;
            border-radius: var(--border-radius-main);
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .floating-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }
        
        /* --- BENEFITS SECTION --- */
        #benefits {
            background-color: var(--color-surface);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .benefit-card {
            text-align: center;
        }
        
        .benefit-icon {
            display: inline-block;
            margin-bottom: 1.5rem;
            color: var(--color-text);
        }

        /* --- PROCESS SECTION --- */
        .process-steps {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            position: relative;
            margin-top: 4rem;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--color-border), var(--color-border) 4px, transparent 4px, transparent 8px);
            z-index: -1;
        }

        .step {
            flex: 1;
            text-align: center;
            max-width: 300px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--color-background);
            border: 2px solid var(--color-text);
            color: var(--color-text);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            font-family: var(--font-headings);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        /* --- ARTICLE SECTION --- */
        #article-section {
            background-color: var(--color-surface);
        }
        
        .section-title-display {
            font-family: var(--font-body);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            color: #999;
            text-align: center;
            margin-bottom: 1rem;
        }

        .article-container {
            background: var(--color-background);
            padding: 3rem;
            border-radius: var(--border-radius-main);
            box-shadow: var(--shadow-soft);
            max-width: 900px;
            margin: 0 auto;
        }

        .article-container h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--color-surface);
        }
        
        .article-container h2:first-of-type {
            margin-top: 0;
        }
        
        .article-container p, 
        .article-container ul, 
        .article-container ol,
        .article-container table {
             margin-bottom: 1.5rem;
        }

        .article-container ul, .article-container ol {
            padding-left: 2rem;
        }
        .article-container li {
            margin-bottom: 0.5rem;
        }
        
        .article-container img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius-main);
            margin: 1.5rem 0;
        }
        
        .article-container table {
            width: 100%;
            border-collapse: collapse;
        }

        .article-container th, .article-container td {
            padding: 0.8rem 1rem;
            border: 1px solid var(--color-border);
            text-align: left;
        }
        .article-container th {
            font-family: var(--font-headings);
            background-color: var(--color-surface);
        }

        /* --- INCLUDED SECTION --- */
        #included {
            background-color: transparent;
        }
        .included-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .included-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .included-item svg {
            flex-shrink: 0;
            color: var(--color-text);
        }
        .included-visual {
            background: var(--color-surface);
            border-radius: var(--border-radius-main);
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }
        .included-visual-inner {
            width: 80%;
            height: 200px;
            background-color: var(--color-background);
            border-radius: 10px;
            box-shadow: var(--shadow-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        /* --- FAQ SECTION --- */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--color-border);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 1.5rem 0;
            cursor: pointer;
            background: none;
            border: none;
            text-align: left;
        }
        .faq-question h3 {
            font-family: var(--font-body);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
        }
        .faq-icon {
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }
        .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;
             margin-bottom: 0;
             color: #555;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        /* --- TESTIMONIALS SECTION --- */
        #testimonials {
            background-color: var(--color-surface);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        .testimonial-card-inner {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .testimonial-text {
            flex-grow: 1;
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #333;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--color-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        .author-name {
            font-weight: 700;
            display: block;
        }
        .author-title {
            font-size: 0.9rem;
            color: #777;
        }

        /* --- FOOTER --- */
        .site-footer {
            background-color: var(--color-text);
            color: #a0a0a0;
            font-size: 0.9rem;
            padding: 4rem 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-about h4 { color: var(--color-background); font-size: 1.2rem; }
        .footer-about p { font-size: 0.95rem; line-height: 1.6; }
        .footer-column h4 {
            font-family: var(--font-body);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            font-weight: 700;
            color: #777;
            margin-bottom: 1.5rem;
        }
        .footer-nav { list-style: none; }
        .footer-nav li { margin-bottom: 0.75rem; }
        .footer-nav a { color: #a0a0a0; }
        .footer-nav a:hover { color: var(--color-background); }
        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            text-align: center;
        }
        
        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            
            .site-header { width: calc(100% - 2rem); top: 0.5rem; }
            .site-nav-list { gap: 1rem; }
            .site-nav-item a { font-size: 0.8rem; }
            
            .process-steps { flex-direction: column; align-items: center; gap: 3rem; }
            .process-steps::before { display: none; }
            
            .included-content { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 768px) {
            .container-fluid { padding: 4rem 1rem; }
            .container-main { width: 95%; }
            
            .site-nav-list .hide-mobile { display: none; }
            
            .hero h1 { font-size: 2.2rem; }
            .hero-subheading { font-size: 1.1rem; }
            
            .footer-grid { grid-template-columns: 1fr; }
            
            .article-container { padding: 1.5rem; }
        }


.page-header-section {             padding: 180px 2rem 4rem 2rem;             background-color: var(--color-surface);         }         .page-header-section h1 {             font-size: 3rem;             text-align: center;         }         .page-header-section .subtitle {             text-align: center;             color: #777;             margin-top: -1.5rem;             font-size: 1rem;         }         #policy-content {             padding-top: 4rem;             padding-bottom: 4rem;             background-color: var(--color-background); /* Override surface color if needed */         }         #policy-content .article-container {             max-width: 800px; /* Tighter container for readability */         }         @media (max-width: 768px) {             .page-header-section {                 padding-top: 140px;                 padding-bottom: 2rem;             }             .page-header-section h1 {                 font-size: 2.5rem;             }         }

.faq-hero {
            padding: 12rem 2rem 6rem;
            text-align: center;
            background-color: var(--color-surface);
        }
        .faq-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 0.5rem;
        }
        .faq-hero p {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 0;
        }
        #faq-page-content {
            padding: 6rem 2rem;
        }
        @media (max-width: 768px) {
            .faq-hero {
                padding: 8rem 1rem 4rem;
            }
            .faq-hero h1 {
                font-size: 2.4rem;
            }
            #faq-page-content {
                padding: 4rem 1rem;
            }
        }

