.home-faq {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 16px;
}

.home-faq .section-title {
    text-align: center;
    margin-bottom: 32px;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 22px;
}

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

.faq-answer {
    display: none;
    padding-bottom: 18px;
    color: #555;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}