    /* --- BRANDING & VARIABLES --- */
    :root {
        --faq-primary: #2563EB;
        --faq-primary-dark: #1d4ed8;
        --faq-secondary: #0F172A;
        --faq-bg-light: #F8FAFC;
        --faq-text-main: #1E293B;
        --faq-text-muted: #64748b;
        --faq-border: #E2E8F0;
    }

    .faq-wrapper {
        font-family: 'Lexend', sans-serif;
        color: var(--faq-text-main);
        background: #fff;
        line-height: 1.6;
    }

    .faq-container {
        max-width: 900px; /* Optimal reading width for FAQs */
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 2;
    }

    /* --- HERO SECTION --- */
    .faq-hero {
        padding: 120px 0 80px;
        text-align: center;
        background: radial-gradient(circle at top right, #eff6ff, #ffffff);
        border-bottom: 1px solid var(--faq-border);
        position: relative;
    }

    .faq-badge {
        display: inline-flex;
        align-items: center;
        padding: 6px 16px;
        background: #dbeafe;
        color: var(--faq-primary);
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .faq-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--faq-secondary);
        margin-bottom: 15px;
        letter-spacing: -0.02em;
    }

    .faq-hero h2 {
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--faq-text-muted);
        max-width: 700px;
        margin: 0 auto 30px;
        line-height: 1.5;
    }

    .faq-intro-card {
        background: white;
        border: 1px solid var(--faq-border);
        border-radius: 16px;
        padding: 30px;
        max-width: 800px;
        margin: 0 auto;
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
        text-align: left;
    }
    
    html[dir="rtl"] .faq-intro-card {
        text-align: right;
    }

    .faq-intro-card p {
        margin: 0 0 15px 0;
        font-size: 1.05rem;
        color: var(--faq-text-main);
    }
    
    .faq-intro-card p:last-child {
        margin-bottom: 0;
    }

    .faq-intro-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .faq-intro-links a {
        color: var(--faq-primary);
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    .faq-intro-links a:hover { color: var(--faq-primary-dark); text-decoration: underline; }

    /* --- ACCORDION SECTION --- */
    .faq-content-section {
        padding: 80px 0;
        background: #fff;
    }

    .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .faq-item {
        border: 1px solid var(--faq-border);
        border-radius: 12px;
        background: white;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: #cbd5e1;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }

    .faq-item.active {
        border-color: var(--faq-primary);
        box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.15);
    }

    .faq-question {
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--faq-secondary);
        background: white;
        user-select: none;
        transition: background 0.3s;
    }

    .faq-question:hover {
        background: var(--faq-bg-light);
    }

    .faq-item.active .faq-question {
        background: var(--faq-bg-light);
        color: var(--faq-primary);
    }

    .faq-question i {
        font-size: 1rem;
        color: var(--faq-text-muted);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
        color: var(--faq-primary);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: white;
    }

    .faq-answer-inner {
        padding: 0 25px 25px;
        color: var(--faq-text-muted);
        font-size: 1rem;
        line-height: 1.7;
    }

    .faq-answer-inner p { margin: 0 0 15px 0; }
    .faq-answer-inner p:last-child { margin-bottom: 0; }
    
    .faq-answer-inner ul {
        margin: 0 0 15px 0;
        padding-left: 20px;
        list-style-type: disc;
    }
    
    html[dir="rtl"] .faq-answer-inner ul {
        padding-left: 0;
        padding-right: 20px;
    }

    .faq-answer-inner ul li {
        margin-bottom: 5px;
    }

    .faq-answer-inner strong {
        color: var(--faq-secondary);
    }

    /* --- CTA SECTION --- */
    .faq-cta {
        padding: 80px 20px;
        text-align: center;
        background: var(--faq-secondary);
        color: white;
    }

    .faq-cta h2 {
        font-size: 2.25rem;
        font-weight: 800;
        margin-bottom: 15px;
        color: white;
    }

    .faq-cta p {
        font-size: 1.15rem;
        color: #cbd5e1;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .faq-btn-group {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .faq-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none !important;
        transition: all 0.3s ease;
        gap: 10px;
        font-size: 1rem;
        cursor: pointer;
    }

    .faq-btn-primary {
        background: var(--faq-primary);
        color: white !important;
        border: none;
    }
    .faq-btn-primary:hover {
        background: var(--faq-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    }

    .faq-btn-outline {
        background: transparent;
        border: 2px solid rgba(255,255,255,0.3);
        color: white !important;
    }
    .faq-btn-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: white;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .faq-hero h1 { font-size: 2.25rem; }
        .faq-hero h2 { font-size: 1.1rem; }
        .faq-question { font-size: 1rem; padding: 15px 20px; }
        .faq-answer-inner { padding: 0 20px 20px; }
    }