.faq-item {
    overflow: hidden;
}

.question {
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}


.question::after {
    font-family: 'Material Symbols Outlined';
    content: 'keyboard_arrow_down';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.question.active::after {
    content: 'keyboard_arrow_up';
}

.answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
}

.answer.show {
    padding: 1em;
    max-height: 1000vh;
}