.tariffs-faq {
    margin-bottom: 60px;
}

.faq-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    list-style: none;
    box-sizing: border-box;
    padding: 16px 24px;

    border: 1px solid #E8E8E8;
    border-radius: 16px;
}

.faq-item.active {
    border: 1px solid #FFCCA4;
    border-radius: 16px;
}

.faq-item__button {
    border: none;
    outline: none;
    background: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #1F201F;
}

.faq-item__button:hover,
.faq-item__button:focus,
.faq-item__button:active {
    border: none;
    outline: none;
    background: none;
}

.faq-item__content {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #636463;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-top 0.3s ease-out;
}

.faq-item.active .faq-item__content {
    margin-top: 12px;
    max-height: 500px;
    transition: max-height 0.3s ease-in, margin-top 0.3s ease-in;
}

.faq-item__button img {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__button img {
    transform: rotate(180deg);
}

/* PHONE*/
@media only screen and (max-width : 576px) {}