.faq-section {
    max-width: 650px;
    margin: 40px auto;
    padding: 10px 20px;
}

.faq-item {
    margin: 0 0 5px 0;
    border: 0;
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 18px 0;
    user-select: none;
    font-weight: bold;
}

.faq-trigger::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.4, 1);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-trigger::after {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 1, 0.4, 1);
}

@media (min-width: 769px) {
    .faq-answer {
        transition: max-height 0.45s cubic-bezier(0.25, 1, 0.4, 1);
    }

    .faq-trigger::after {
        transition: transform 0.45s cubic-bezier(0.25, 1, 0.4, 1);
    }
}

.faq-answer-inner {
    padding-bottom: 15px;
}

.faq-answer p {
    margin: 0 0 12px 0;
    padding: 0;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-section .faq-answer {
    transition: max-height 150ms cubic-bezier(0.25, 1, 0.4, 1) !important;
}

.faq-trigger::after {
    transition: transform 150ms cubic-bezier(0.25, 1, 0.4, 1) !important;
}

.faq-section {
    will-change: max-height !important;
}
