.faq {
    max-width: 800px;
    margin: 80px auto 100px;
    text-align: center;
}

.faq-header {
    margin-bottom: 32px;
}

.faq-title {
    margin-bottom: 50px;
    text-align: center;
}

.faq-description {
    max-width: 528px;
    margin: 0 auto 50px auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #3B2F2F;
}

.faq-list {
    margin-top: 32px;
    text-align: left;
}

.faq-item+.faq-item {
    margin-top: 12px;
}

.faq-item {
    background: #F7F7F7;
    border: 2px solid #EAEAEA;
    border-radius: 8px;
}

.faq-question {
    background: #f9f9f9;
    width: 100%;
    padding: 24px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    color: #3B2F2F;
    cursor: pointer;
    text-align: left;
    transition: box-shadow 0.2s ease, transform 0.1s ease, border-radius 0.2s ease;
    border-radius: 8px;
}

.faq-icon {
    font-size: 18px;
    font-weight: 600;
    color: #4b4b4b;
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-answer {
    background: #F7F7F7;
    margin-top: -8px;
    padding: 0 20px 16px;
    font-family: 'Inter';
    font-style: normal;
    font-size: 17px;
    line-height: 150%;
    color: #3B2F2F;
    line-height: 1.6;
}

.faq-item.open .faq-question {
    margin-bottom: 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

@media screen and (max-width: 820px) {
    .faq-title {
        font-size: 28px;
    }
}