.faq {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px;
    background: #fff;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    color: var(--gray);
    line-height: 1.8;
}

.faq-answer p {
    padding: 0 22px 22px;
}