.faq__title {
    text-align: center;
}

.faq__title_left {
    text-align: left;
}

.faq__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.faq__item {
    margin-bottom: 10px;
}

.faq__description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 30px;
    transition: 
        max-height 0.3s ease,
        opacity 0.3s ease,
        padding 0.3s ease;
}

.faq__description_open {
    max-height: 1000px;
    opacity: 1;
    padding: 20px 30px;
    background-color: var(--color-white);
    border-radius: 0 0 16px 16px;
    border-top: 1px solid rgba(17, 17, 17, .2);
}

.faq__description p {
    padding: 7px 5px;
    margin-bottom: 5px;
    font-size: 16px;
}

.faq__description p span {
    font-size: 16px;
}

.faq__description span {
    font-size: 16px;
}

.faq__description ul {
    margin: 0;
    padding: 0;

    list-style-position: inside;
    list-style-type: disc;
}

.faq__description ul li {
    padding: 5px;
    font-size: 16px;
}

.faq__header {
    padding: 20px 30px;
    padding-right: 100px;
    background-color: var(--color-white);
    border-radius: 16px;
    position: relative;
    cursor: pointer;
}

.faq__header_opened {
    border-radius: 16px 16px 0 0;
}

.faq p {
    margin: 0;
}

.faq__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: #f2f2f2;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1L12 23M1 12H23' stroke='%23222128' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq__button:hover {
    background-color: #e0e0e0;
}

.faq__button_close {
    background-color: #ED7180;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.7782 1.22184L1.22182 16.7782M1.22183 1.22184L16.7782 16.7782' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 18px 18px;
}

.faq__button_close:hover {
    background-color: #d85e6c;
}

.faq__slogan {
    max-width: 700px;
}
