
    :root {
        --radius: 20px;
        --transition: all 0.3s ease;
    }

    /* --- FAQ HERO --- */
    .faq-hero {
        height: 20vh;
        background: var(--primary-emerald);
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-bottom: 5px solid var(--secondary-gold);
    }

    .faq-hero h1 {
        color: var(--secondary-gold);
        /* font-size: clamp(35px, 6vw, 55px); */
        margin-bottom: 45px;
    }

    /* --- FAQ CONTAINER --- */
    .faq-container {
        max-width: 850px;
        margin: -60px auto 100px auto;
        position: relative;
        z-index: 10;
        padding: 10px;
    }

    .faq-category-title {
        color: var(--primary-emerald);
        margin: 40px 0 20px 10px;
        font-size: 28px;
        border-left: 4px solid var(--secondary-gold);
        padding-left: 15px;
    }

    /* --- ACCORDION STYLE --- */
    .faq-item {
        background: var(--text-light);
        margin-bottom: 15px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .faq-question {
        padding: 22px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        color: var(--primary-emerald);
        transition: var(--transition);
        user-select: none;
    }

    .faq-question:hover {
        background: rgba(212, 175, 55, 0.05);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0, 1, 0, 1);
        background: #fdfdfd;
        color: #555;
        line-height: 1.7;
    }

    .faq-answer-inner {
        padding: 0 30px 25px 30px;
    }

    .faq-item.active .faq-answer {
        max-height: 1000px;
        transition: all 0.4s cubic-bezier(1, 0, 1, 0);
    }

    .faq-item.active .faq-question {
        background: var(--primary-emerald);
        color: var(--secondary-gold);
    }

    .icon-plus {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .faq-item.active .icon-plus {
        transform: rotate(45deg);
    }

    /* --- SUPPORT CTA --- */
    .support-box {
        text-align: center;
        background: var(--primary-emerald);
        color: var(--text-light);
        padding: 60px;
        border-radius: var(--radius);
        margin-top: 60px;
        border: 2px solid var(--secondary-gold);
    }

    .support-box h3 { color: var(--secondary-gold);  font-size: 30px; margin-bottom: 15px; }

    .support-btn {
        display: inline-block;
        margin-top: 25px;
        padding: 15px 40px;
        background: var(--secondary-gold);
        color: var(--primary-emerald);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        transition: var(--transition);
    }

    .support-btn:hover { background: var(--text-light); }
