    /* --- Layout --- */
    .faq-page-section .container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* --- Modern Hero Section --- */
    .faq-page-section .hero {
        position: relative;
        text-align: center;
        padding: 135px 20px 60px;
        background: linear-gradient(135deg, #3C0753 0%, #720455 100%);
        color: #ffffff;
        overflow: hidden;
    }

    .faq-page-section .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
        transform: rotate(30deg);
    }

    /* --- Breadcrumbs --- */
    .faq-page-section .breadcrumb {
        display: flex;
        justify-content: center;
        margin-top: 24px;
        position: relative;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .faq-page-section .breadcrumb ol {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        align-items: center;
    }

    .faq-page-section .breadcrumb li {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.5);
    }

    .faq-page-section .breadcrumb li a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        transition: color 0.2s;
        position: relative;
    }

    .faq-page-section .breadcrumb li a:hover {
        color: #EA9611;
        text-shadow: 0 0 10px rgba(234, 150, 17, 0.4);
    }

    .faq-page-section .breadcrumb li:not(:last-child)::after {
        content: '/';
        margin: 0 10px;
        color: rgba(255, 255, 255, 0.3);
        font-size: 0.8rem;
    }

    .faq-page-section .breadcrumb li:last-child {
        color: #ffffff;
        pointer-events: none;
    }

    .faq-page-section .hero h1 {
        position: relative;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 16px;
        background: linear-gradient(to right, #ffffff 20%, #EA9611);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .faq-page-section .hero p {
        position: relative;
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.85);
        max-width: 600px;
        margin: 0 auto 10px;
    }

    /* --- Floating Search Bar --- */
    .faq-page-section .search-container {
        margin-top: -40px;
        margin-bottom: 40px;
        position: relative;
        z-index: 10;
        padding: 0 20px;
    }

    .faq-page-section .search-wrapper {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 9999px;
        box-shadow: 0 20px 25px -5px rgba(60, 7, 83, 0.1), 0 10px 10px -5px rgba(60, 7, 83, 0.04);
        display: flex;
        align-items: center;
        padding: 8px;
        transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    }

    .faq-page-section .search-wrapper:focus-within {
        transform: translateY(-2px);
        box-shadow: 0 25px 30px -5px rgba(60, 7, 83, 0.2);
    }

    .faq-page-section .search-icon {
        margin-left: 16px;
        color: #EA9611;
    }

    .faq-page-section .search-input {
        width: 100%;
        padding: 16px;
        border: none;
        outline: none;
        font-size: 1.05rem;
        color: #2d053d;
        background: transparent;
        border-radius: 9999px;
    }

    /* --- Sticky Pill Navigation --- */
    .faq-page-section .filter-nav {
        position: sticky;
        top: 20px;
        z-index: 50;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0 20px;
        pointer-events: none;
        /* Allows clicks through empty space */
    }

    .faq-page-section .filter-scroll {
        display: flex;
        gap: 12px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 9999px;
        box-shadow: 0 4px 6px -1px rgba(60, 7, 83, 0.1), 0 2px 4px -1px rgba(60, 7, 83, 0.06);
        overflow-x: auto;
        scrollbar-width: none;
        max-width: 100%;
        pointer-events: auto;
        /* Re-enable pointer events for the pill itself */
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
        white-space: nowrap;
    }

    .faq-page-section .filter-scroll::-webkit-scrollbar {
        display: none;
    }

    .faq-page-section .category-btn {
        white-space: nowrap;
        padding: 10px 24px;
        border: none;
        background: transparent;
        color: #4b5563;
        font-weight: 600;
        cursor: pointer;
        border-radius: 9999px;
        transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
        font-size: 0.95rem;
    }

    .faq-page-section .category-btn:hover {
        color: #3C0753;
        background: rgba(60, 7, 83, 0.05);
    }

    .faq-page-section .category-btn.active {
        background: #3C0753;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(60, 7, 83, 0.3);
    }

    /* --- Card Grid Layout --- */
    .faq-page-section .faq-grid {
        display: grid;
        gap: 20px;
        padding-bottom: 80px;
    }

    .faq-page-section details.faq-item {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid transparent;
        box-shadow: 0 2px 4px rgba(60, 7, 83, 0.05);
        overflow: hidden;
        transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
        position: relative;
    }

    .faq-page-section details.faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px -1px rgba(60, 7, 83, 0.1), 0 2px 4px -1px rgba(60, 7, 83, 0.06);
    }

    .faq-page-section details[open].faq-item {
        border-color: #EA9611;
        box-shadow: 0 4px 6px -1px rgba(60, 7, 83, 0.1), 0 2px 4px -1px rgba(60, 7, 83, 0.06);
        background: #fff;
    }

    .faq-page-section details[open].faq-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #EA9611;
    }

    .faq-page-section summary {
        padding: 24px;
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        font-size: 1.1rem;
        color: #2d053d;
        transition: color 0.2s;
    }

    .faq-page-section summary:hover {
        color: #720455;
    }

    .faq-page-section summary::-webkit-details-marker {
        display: none;
    }

    /* Icon Animation */
    .faq-page-section .icon-plus {
        position: relative;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .faq-page-section .icon-plus::before,
    .faq-page-section .icon-plus::after {
        content: '';
        position: absolute;
        background-color: #910A67;
        transition: transform 0.3s ease;
        border-radius: 2px;
    }

    .faq-page-section .icon-plus::before {
        top: 11px;
        left: 0;
        width: 24px;
        height: 2px;
    }

    .faq-page-section .icon-plus::after {
        top: 0;
        left: 11px;
        width: 2px;
        height: 24px;
    }

    .faq-page-section details[open] .icon-plus::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .faq-page-section details[open] .icon-plus::before {
        transform: rotate(180deg);
        background-color: #EA9611;
    }

    .faq-page-section .faq-content {
        padding: 0 24px 24px 24px;
        color: #4b5563;
        line-height: 1.7;
        animation: slideDown 0.3s ease-out;
    }

    .faq-page-section .badge {
        display: inline-flex;
        align-items: center;
        font-size: 0.75rem;
        padding: 4px 12px;
        border-radius: 6px;
        background: rgba(234, 150, 17, 0.1);
        color: #d98600;
        font-weight: 700;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Table Styling for content */
    .faq-page-section .faq-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 15px 0;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.5);
    }

    .faq-page-section .faq-content th,
    .faq-page-section .faq-content td {
        padding: 12px;
        border: 1px solid rgba(60, 7, 83, 0.1);
        text-align: left;
    }

    .faq-page-section .faq-content th {
        background-color: rgba(60, 7, 83, 0.05);
        font-weight: 600;
        color: #3C0753;
    }

    .faq-page-section .faq-content tr:nth-child(even) {
        background-color: rgba(60, 7, 83, 0.02);
    }

    .faq-page-section .faq-content ul {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .faq-page-section .faq-link {
        color: #EA9611;
        text-decoration: none;
        font-weight: 600;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
        .faq-page-section .hero h1 {
            font-size: 2rem;
        }

        .faq-page-section .filter-nav {
            top: 10px;
            padding: 0 10px;
            justify-content: flex-start;
            /* Crucial for scrolling overflow */
        }

        .faq-page-section .filter-scroll {
            justify-content: flex-start;
            width: 100%;
        }

        .faq-page-section .faq-content table {
            display: block;
            overflow-x: auto;
        }
    }