/* ===== FAQ CONTAINER ===== */
.faq-item {
    margin-bottom: 10px !important;
    border: 1px solid #e6e6e6 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #f6f6f6 !important;
    transition: all 0.3s ease !important;
    padding: 7px !important;
    background: #f6f6f6 !important;
    cursor: pointer !important;
}

/* ===== QUESTION ===== */
.faq-question {
    position: relative;
    padding: 10px 50px 10px 10px;
    background: #f7f9fc;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #222;
}

/* Hover */
.faq-question:hover {
    background: #eef3ff;
}

/* ===== PLUS ICON ===== */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: #0073aa;
    transition: all 0.3s ease;
}

/* ===== ACTIVE STATE ===== */
.faq-item.active .faq-question {
    background: #eef3ff;
}

/* Change + to − */
.faq-item.active .faq-question::after {
    content: "−";
}

/* ===== ANSWER ===== */
.faq-answer {
    display: none;
    padding: 16px;
    background: #ffffff;
    border-top: 1px solid #eee;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* ===== OPEN STATE ===== */
.faq-item.active .faq-answer {
    display: block;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 14px 45px 14px 14px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 14px;
    }
}