/* =========================
   FAQ – ACCORDION
========================= */

.faq-accordion {
    margin-top: 60px;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: #111;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: rgb(96, 180, 190);
    transition: transform .2s ease;
}

.faq-item.active .faq-question::after {
    content: "–";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    margin: 0 0 24px;
    line-height: 1.7;
    color: #444;
}

/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 500px;
}