    /* Modern Accordion Styles & Overrides */
    .faq-page-wrapper {
        background-color: #F5F7FA;
        min-height: 100vh;
        padding-bottom: 40px;
    }
    .faq-hero {
        background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary) 100%);
        color: white;
        padding: 60px 0 80px;
        margin-bottom: 40px;
        text-align: center;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .faq-hero h1 {
        font-weight: 800;
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .faq-hero p {
        font-size: 1.1rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Category Headers */
    .category-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--color-secondary);
        color: var(--color-primary-darker);
    }
    .category-header i {
        font-size: 1.5rem;
        margin-right: 15px;
        color: var(--color-secondary);
        background: rgba(90, 188, 185, 0.15);
        padding: 10px;
        border-radius: 12px;
    }
    .category-header h3 {
        margin: 0;
        font-weight: 700;
        font-size: 1.4rem;
    }

    /* Panel Styles */
    .panel-group .panel {
        border: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 1px 3px rgba(0,0,0,0.05);
        border-radius: 12px;
        margin-bottom: 15px;
        background: #fff;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .panel-group .panel:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    }
    .panel-default > .panel-heading {
        background: transparent;
        border: 0;
        padding: 0;
    }
    .panel-title > a {
        display: block;
        padding: 20px 25px;
        color: var(--text);
        font-weight: 600;
        text-decoration: none;
        font-size: 1.05rem;
        position: relative;
        transition: color 0.3s ease;
    }
    .panel-title > a:hover {
        color: var(--color-primary);
    }
    .panel-title > a[aria-expanded="true"] {
        color: var(--color-primary);
        font-weight: 700;
    }
    
    /* Chevron Icon Rotation */
    .panel-title > a .toggle-icon {
        float: right;
        font-size: 0.9em;
        margin-top: 3px;
        transition: transform 0.3s ease;
        color: var(--text-muted);
    }
    .panel-title > a[aria-expanded="true"] .toggle-icon {
        transform: rotate(180deg);
        color: var(--color-primary);
    }

    .panel-body {
        border-top: 1px solid rgba(0,0,0,0.05) !important;
        padding: 0 25px 25px 25px;
        color: var(--text-muted);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Action Links */
    .faq-action-link {
        display: inline-flex;
        align-items: center;
        margin-top: 15px;
        padding: 8px 16px;
        background-color: rgba(36, 78, 152, 0.08); /* Primary color low opacity */
        color: var(--color-primary);
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.2s ease;
    }
    .faq-action-link:hover {
        background-color: var(--color-primary);
        color: #fff;
        text-decoration: none;
    }
    .faq-action-link i {
        margin-right: 8px;
    }
    
    /* Responsive spacing */
    .section-margin {
        margin-bottom: 50px;
    }