:root {
    --pma-primary: #4b7ed1;
    --pma-secondary: #ffb800;
    --pma-navy: #0a2540;
    --pma-light-bg: #f8fafc;
    --pma-text: #475569;
    --pma-border: #e2e8f0;
}

body {
    background-color: var(--pma-light-bg);
}

/* =========================================
                                                                       CINEMATIC HERO SECTION
                                                                    ========================================= */

/* =========================================
                                                                       FAQ LAYOUT & SIDEBAR
                                                                    ========================================= */
.faq-wrapper {
    padding: 100px 0 120px;
}

.sticky-sidebar {
    position: sticky;
    top: 140px;
}

.faq-nav-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.04);
    border: 1px solid var(--pma-border);
    margin-bottom: 30px;
}

.faq-nav-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pma-navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--pma-border);
}

.faq-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-nav-list li {
    margin-bottom: 12px;
}

.faq-nav-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: var(--pma-light-bg);
    border-radius: 14px;
    color: var(--pma-text);
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-nav-list a:hover,
.faq-nav-list a.active {
    background: var(--pma-primary);
    color: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 10px 20px rgb(33 150 243 / 28%);
}

/* Support Card */
.support-card {
    background: var(--pma-navy);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.support-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.support-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.support-card .btn {
    font-size: 1.1rem;
    padding: 14px 20px;
}

/* =========================================
                                                                       PREMIUM CUSTOM ACCORDION (ENLARGED)
                                                                    ========================================= */
.faq-category-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--pma-navy);
    margin-bottom: 35px;
    margin-top: 60px;
    letter-spacing: -0.5px;
}

.faq-category-title:first-child {
    margin-top: 0;
}

.accordion-custom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Increased gap for larger cards */
}

.accordion-item {
    background-color: #ffffff;
    border: 1px solid var(--pma-border);
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.accordion-item:hover {
    border-color: rgb(3 169 244 / 49%);
    box-shadow: 0 15px 30px rgb(3 169 244 / 12% 12%);
}

/* --- SIGNIFICANTLY LARGER QUESTION TEXT --- */
.accordion-button {
    background-color: transparent !important;
    color: var(--pma-navy);
    font-weight: 800;
    /* Made bolder */
    font-size: 1.55rem;
    /* Increased to ~25px */
    padding: 30px 40px;
    /* Increased padding */
    border: none !important;
    box-shadow: none !important;
    gap: 20px;
    line-height: 1.5;
}

.accordion-button:not(.collapsed) {
    color: var(--pma-primary);
    background-color: rgba(7, 161, 105, 0.02) !important;
}

.accordion-button::after {
    display: none;
}

.acc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    /* Slightly larger icon */
    height: 40px;
    border-radius: 50%;
    background: var(--pma-light-bg);
    color: var(--pma-primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-left: auto;
}

.accordion-button:not(.collapsed) .acc-icon {
    background: var(--pma-primary);
    color: #ffffff;
    transform: rotate(180deg);
}

.accordion-button:not(.collapsed) .acc-icon i::before {
    content: "\f068";
}

/* --- SIGNIFICANTLY LARGER ANSWER TEXT --- */
.accordion-body {
    padding: 0 40px 40px;
    /* Increased padding */
    color: var(--pma-text);
    font-size: 1.25rem;
    /* Increased to ~20px */
    line-height: 1.85;
    /* Increased line height for readability */
    border-top: none;
}

.accordion-body strong {
    color: var(--pma-navy);
    font-weight: 700;
}

@media (max-width: 991px) {
    .sticky-sidebar {
        position: static;
        margin-bottom: 40px;
    }

    /* Responsive adjustments for the larger text */
    .accordion-button {
        padding: 25px;
        font-size: 1.35rem;
    }

    .accordion-body {
        padding: 0 25px 30px;
        font-size: 1.15rem;
    }

    .faq-category-title {
        font-size: 1.8rem;
    }
}
