.los-faq {
    padding: 80px 0;
    background: var(--los-purple-900);
}

.los-faq__list {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.los-faq__item {
    background: var(--los-purple-card);
    border-radius: 14px;
    overflow: hidden;
    transition: background .2s ease;
}

.los-faq__item.is-open {
    background: var(--los-purple-card-light);
}

.los-faq__head {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
}

.los-faq__q {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.los-faq__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s ease, background .2s ease;
}

.los-faq__icon svg {
    width: 14px;
    height: 14px;
}

.los-faq__item.is-open .los-faq__icon {
    transform: rotate(180deg);
    background: var(--los-orange);
}

.los-faq__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.los-faq__panel-inner {
    padding: 0 24px 20px;
    color: var(--los-text-muted-2);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .los-faq {
        padding: 56px 0;
    }
    .los-faq__head {
        padding: 16px 18px;
    }
    .los-faq__panel-inner {
        padding: 0 18px 18px;
    }
}
