.epr-faq-wrapper {
        width: 90%;
        max-width: 1200px;
        margin: 50px auto;
        padding: 40px 32px;
        background: #ffffff;
        border-radius: 28px;
        border: 1px solid #e9edf2;
        box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.06);
        font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    }

    .epr-faq-wrapper .faq-header {
        text-align: center;
        margin-bottom: 36px;
    }

    .epr-faq-wrapper .faq-header .badge {
        display: inline-block;
        background: #d1fae5;
        color: var(--emerald-mid);
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 4px 18px;
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .epr-faq-wrapper .faq-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--bg-dark);
        margin-bottom: 6px;
        letter-spacing: -0.02em;
    }

    .epr-faq-wrapper .faq-header h2 span {
        color: var(--emerald-mid);
    }

    .epr-faq-wrapper .faq-header p {
        color: #475569;
        font-size: 1rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* ===== CATEGORY TABS ===== */
    .faq-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-bottom: 28px;
        border-bottom: 1px solid #eef2f6;
        padding-bottom: 16px;
    }

    .faq-tabs .tab-btn {
        background: transparent;
        border: 2px solid #e9edf2;
        border-radius: 40px;
        padding: 6px 20px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #64748b;
        cursor: pointer;
        transition: 0.2s;
    }

    .faq-tabs .tab-btn:hover {
        border-color: #94a3b8;
        background: #f1f5f9;
    }

    .faq-tabs .tab-btn.active {
        background: var(--emerald-mid);
        border-color: var(--emerald-mid);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(15, 107, 62, 0.25);
    }

    /* ===== FAQ ACCORDION ===== */
    .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .faq-item {
        border: 1px solid #e9edf2;
        border-radius: 14px;
        overflow: hidden;
        transition: 0.2s;
    }

    .faq-item:hover {
        border-color: #cbd5e1;
    }

    .faq-item.active {
        border-color: var(--emerald-mid);
        box-shadow: 0 4px 16px rgba(15, 107, 62, 0.06);
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        cursor: pointer;
        background: #f8fafc;
        transition: 0.2s;
        gap: 12px;
        user-select: none;
    }

    .faq-question:hover {
        background: #f1f5f9;
    }

    .faq-item.active .faq-question {
        background: #f4fcf7;
    }

    .faq-question .q-text {
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--bg-dark);
        flex: 1;
    }

    .faq-question .q-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        min-width: 26px;
        border-radius: 50%;
        background: #e9edf2;
        color: #64748b;
        font-size: 0.65rem;
        font-weight: 700;
    }

    .faq-item.active .faq-question .q-number {
        background: var(--emerald-mid);
        color: #ffffff;
    }

    .faq-question .q-icon {
        color: #64748b;
        font-size: 0.8rem;
        transition: 0.3s;
        flex-shrink: 0;
    }

    .faq-item.active .faq-question .q-icon {
        transform: rotate(180deg);
        color: var(--emerald-mid);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0 20px;
        background: #ffffff;
    }

    .faq-item.active .faq-answer {
        max-height: 600px;
        padding: 16px 20px 20px;
    }

    .faq-answer p {
        font-size: 0.85rem;
        color: #334155;
        line-height: 1.7;
        margin: 0 0 8px 0;
    }

    .faq-answer p:last-child {
        margin-bottom: 0;
    }

    .faq-answer ul,
    .faq-answer ol {
        margin: 6px 0 10px 20px;
        padding: 0;
    }

    .faq-answer ul li,
    .faq-answer ol li {
        font-size: 0.85rem;
        color: #334155;
        line-height: 1.7;
        margin-bottom: 4px;
    }

    .faq-answer .highlight-box {
        background: #f4fcf7;
        border-left: 4px solid var(--emerald-mid);
        padding: 10px 16px;
        border-radius: 0 10px 10px 0;
        margin: 8px 0 4px;
    }

    .faq-answer .highlight-box strong {
        color: var(--emerald-mid);
    }

    .faq-answer .fee-table {
        width: 100%;
        border-collapse: collapse;
        margin: 8px 0 4px;
        font-size: 0.82rem;
    }

    .faq-answer .fee-table th {
        background: var(--bg-dark);
        color: #ffffff;
        padding: 8px 14px;
        text-align: left;
        font-weight: 600;
    }

    .faq-answer .fee-table td {
        padding: 7px 14px;
        border-bottom: 1px solid #e9edf2;
        color: #334155;
    }

    .faq-answer .fee-table tr:nth-child(even) td {
        background: #f8fafc;
    }

    /* ===== SEARCH BAR ===== */
    .faq-search {
        margin-bottom: 24px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
    }

    .faq-search input {
        flex: 1;
        min-width: 200px;
        padding: 10px 18px;
        border: 2px solid #e9edf2;
        border-radius: 12px;
        font-size: 0.9rem;
        background: #f8fafc;
        transition: 0.2s;
        color: var(--bg-dark);
    }

    .faq-search input:focus {
        outline: none;
        border-color: var(--emerald-mid);
        box-shadow: 0 0 0 4px rgba(15, 107, 62, 0.08);
        background: #ffffff;
    }

    .faq-search input::placeholder {
        color: #94a3b8;
    }

    .faq-search .search-btn {
        background: var(--emerald-mid);
        color: #ffffff;
        border: none;
        padding: 10px 24px;
        border-radius: 60px;
        font-weight: 700;
        font-size: 0.85rem;
        cursor: pointer;
        transition: 0.2s;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .faq-search .search-btn:hover {
        background: var(--emerald-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(15, 107, 62, 0.3);
    }

    /* ===== STILL HAVE QUESTIONS ===== */
    .faq-footer-cta {
        text-align: center;
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid #eef2f6;
    }

    .faq-footer-cta p {
        font-size: 0.95rem;
        color: #475569;
        margin-bottom: 12px;
    }

    .faq-footer-cta .btn-help {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--emerald-mid), #1fa86a);
        color: #ffffff;
        border: none;
        padding: 12px 32px;
        border-radius: 60px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
        box-shadow: 0 8px 24px -6px rgba(16, 185, 129, 0.3);
    }

    .faq-footer-cta .btn-help:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px -8px rgba(16, 185, 129, 0.4);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
        .epr-faq-wrapper {
            padding: 24px 16px;
            margin: 30px 12px;
            border-radius: 18px;
        }
        .epr-faq-wrapper .faq-header h2 {
            font-size: 1.5rem;
        }
        .faq-tabs {
            gap: 6px;
        }
        .faq-tabs .tab-btn {
            font-size: 0.7rem;
            padding: 5px 14px;
        }
        .faq-question {
            padding: 12px 14px;
        }
        .faq-question .q-text {
            font-size: 0.8rem;
        }
        .faq-item.active .faq-answer {
            padding: 12px 14px 16px;
        }
        .faq-answer p,
        .faq-answer ul li,
        .faq-answer ol li {
            font-size: 0.8rem;
        }
        .faq-search {
            flex-direction: column;
        }
        .faq-search input {
            width: 100%;
        }
        .faq-search .search-btn {
            width: 100%;
            justify-content: center;
        }
        .faq-answer .fee-table {
            font-size: 0.7rem;
        }
        .faq-answer .fee-table th,
        .faq-answer .fee-table td {
            padding: 5px 10px;
        }
    }

    @media (max-width: 480px) {
        .epr-faq-wrapper {
            padding: 16px 12px;
        }
        .epr-faq-wrapper .faq-header h2 {
            font-size: 1.2rem;
        }
        .faq-tabs .tab-btn {
            font-size: 0.65rem;
            padding: 4px 10px;
        }
        .faq-question .q-text {
            font-size: 0.75rem;
        }
        .faq-answer .fee-table {
            font-size: 0.65rem;
        }
        .faq-answer .fee-table th,
        .faq-answer .fee-table td {
            padding: 4px 8px;
        }
        .faq-footer-cta .btn-help {
            padding: 10px 24px;
            font-size: 0.85rem;
            width: 100%;
            justify-content: center;
        }
    }

body {
    background-image: url('../public/image/homepage/epr_neo_green_vasundhara_hompage_background_image.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
