.faq-page {
    padding: 40px 60px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2937;
}

/* Header */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .faq-title h1 {
        font-size: 36px;
        font-weight: 800;
        margin: 0;
    }

.faq-back {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-weight: 500;
    text-decoration: none;
}

.back-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
}

.faq-back:hover .back-circle {
    background-color: #e2e8f0;
    border-color: #94a3b8;
}

 


.faq-subtitle {
    max-width: 900px;
    margin: 12px 0 40px;
    color: #4b5563;
    font-size: 16px;
}

    .faq-subtitle a {
        color: #1d4ed8;
        text-decoration: underline;
    }

/* Layout */
.faq-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 22px 28px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .faq-question .arrow {
        width: 12px;
        height: 12px;
        border-right: 3px solid #2f5d8c;
        border-bottom: 3px solid #2f5d8c;
        transform: rotate(45deg);
        transition: transform .3s ease;
    }

/* Answer */
.faq-answer {
    max-height: 0;
    padding: 0 28px;
    overflow: hidden;
    background: #dbeaf7;
    color: #111827;
    font-size: 17px;
    line-height: 1.6;
    transition: max-height .35s ease, padding .35s ease;
}

/* Active */
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 28px 26px;
}


.faq-item.active .arrow {
    transform: rotate(-135deg);
}

/* Image Card */
.faq-image-card {
    background: #bdbdbd;
    padding: 16px;
    border-radius: 18px;
    /* PROTOTYPE-STYLE DIRECTIONAL SHADOW */
    box-shadow: -18px 28px 45px rgba(0, 0, 0, 0.25), -8px 12px 20px rgba(0, 0, 0, 0.18);
}



    .faq-image-card img {
        width: 100%;
        border-radius: 14px;
        display: block;
    }
