.faq {
    margin-top: 60px;
    margin-bottom: 100px;
}

.faq-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background: var(--menu-bg-color);
    border: 1px solid #e3e6eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    list-style: none;
    padding: 16px 48px 16px 16px;
    cursor: pointer;
    position: relative;
    background-color: var(--menu-bg-color);

    outline: none;
    box-shadow: none;
    background-image: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background-image: url("/assets/images/icons/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    background-color: var(--menu-bg-color);
    padding: 0 16px 16px;
}

.faq-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-list-item {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
}

.faq-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #303030;
    line-height: 1;
}