﻿.faq-list {
    display:flex;
    flex-direction:column;
    gap:15px;
}

.faq-element .faq-question {
    background-color: #f0f0f0;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 25px;
    padding-left: 25px;
    color: #3e3e3e;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
    border-radius: 5px;
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.faq-element .faq-question svg {
    height: 24px;
    width: 24px;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}


.faq-element.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-element .faq-answer-container {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
}

.faq-element.active .faq-answer-container {
    opacity: 1;
}

.faq-element .faq-answer {
    padding-left: 45px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}
