.section-faq {
    margin: 100px 0;
}

.faq-section {
    max-width: 1030px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 48px;
}

.faq-container {
    text-align: left;
    border-top: 1px solid #DBDBDB;
}

.faq-item {
    padding: 19px 14px;
    border-bottom: 1px solid #DBDBDB;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    text-align: left;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    text-align: left;
}

.faq-item.active .faq-question {
    color: #4D897C;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 22px;
    padding-right: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon svg path {
    stroke: #4D897C;
}

@media (max-width: 768px) {
    .section-faq {
        margin: 52px 0;
    }
    .faq-item {
        padding: 18px 14px 18px 0;
        border-bottom: 1px solid #DBDBDB;
        cursor: pointer;
    }
    .faq-question {
        font-size: 14px;
    }
    .faq-answer {
        font-size: 14px;
    }
}