/* --- FAQ Accordion --- */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border-grey);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-green);
    transition: var(--transition);
}

.faq-item.open .faq-question::after {
    content: '\2212';
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-answer {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 16px;
}
