.faq-widget {
    max-width: 68.2rem;
    margin: 0 auto;
}

.faq-widget__faq-container {
    background: #ECECEC;
    padding: 23px 95px;
    margin-top: 11px;
}

.faq-widget .faq-widget__faq-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

.faq-widget__faq-item {
    padding: 25px 0 25px 0;
    border-top: 1px solid #BDBDBD;
}

.faq-widget__faq-item:last-of-type {
    border-bottom: 1px solid #BDBDBD;
}

.faq-widget .faq-widget__faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.faq-widget .faq-widget__faq-question:after {
    content: '+';
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.faq-widget .faq-widget__faq-question.active:after {
    content: '-';
}

.faq-widget__faq-answer p:last-of-type {
    margin-bottom: 0;
}

.faq-widget__faq-answer p:first-of-type {
    margin-top: 0.5rem;
}

.faq-widget__faq-answer p {
    padding-right: 2rem;
}

.faq-widget__faq-answer p a {
    text-decoration-line: underline;
    color: #000;
}

.faq-widget__faq-answer p a:hover {
    color: #2FB3B3;
}

@media (max-width: 921px) {
    .faq-widget__faq-container {
        padding: 23px 50px;
    }
}