.faq {
    margin-bottom: 100px;
}
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
}
.faq h3 {
    font-weight: 600;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    background: none;
    border: none;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 36px;
    transition: transform 0.2s ease;
    color: #f7988d;
}

.faq-question.active::after {
    content: "-";
    transform: rotate(180deg);
    font-size: 36px;
    color: #f7988d;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
    color: #374151;
}

.faq-answer.open {
    max-height: 200px;
    padding-top: 10px;
}

.reviewsWrapper {
    h2 {
        margin-bottom: 20px;
    }
}
