.faq-item {
    border-bottom: 1px solid #F4EEE7;
    padding: 24px 0;
}

.faq-question {
    cursor: pointer;
    font-size: 32px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.faq-question span {
    color: #48788c;
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 18px;
    width: 20px;
    height: 20px;
    background-image: url('../../../img/faq-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.3s ease;
}

.faq-item.faq-active .faq-question::after {
    transform: rotate(-90deg);
}

.faq-answer {
    display: none;
    padding: 15px 0 0 40px;
    max-width: 1080px;
}

@media screen and (max-width: 992px) {
    .faq-question {
        font-size: 24px;
    }

    .faq-answer {
        padding: 15px 0 0 24px;
    }
}

@media screen and (max-width: 767px) {
    .faq-item {
        padding: 16px 0;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        padding-left: 16px;
    }

    .faq-answer p {
        font-size: 12px;
    }
}