    .faq-hero {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        border-radius: 10px;
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }
    .faq-category {
        background: #f8f9fa;
        border-radius: 6px;
        padding: 1rem 1.5rem;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .faq-category:hover, .faq-category.active {
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .faq-category.active {
        border-left: 4px solid #0f1f7a;
    }
    .accordion-item {
        border: none;
        border-radius: 15px !important;
        margin-bottom: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        overflow: hidden;
    }
    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-weight: 600;
        background: white;
        border-radius: 15px !important;
    }
    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
        color: white;
        box-shadow: none;
    }
    .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }
    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    .accordion-body {
        padding: 1.5rem;
        background: #fafbfc;
    }
    .search-box {
        position: relative;
        max-width: 500px;
        margin: 0 auto;
    }
    .search-box input {
        padding: 1rem 1rem 1rem 3rem;
        border-radius: 7px;
        border: 2px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.1);
        color: white;
        width: 100%;
    }
    .search-box input::placeholder {
        color: rgba(255,255,255,0.7);
    }
    .search-box input:focus {
        outline: none;
        border-color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.15);
    }
    .search-box i {
        position: absolute;
        left: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255,255,255,0.7);
    }
    .quick-answer {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .asa-faq-sidebar-sticky {
        top: 20px;
    }
    .asa-faq-item-hidden {
        display: none;
    }
