.timeless-faq {
    max-width: 700px;
    margin: 20px auto;
    background: #F6F0FF;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(28, 52, 39, 0.06);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #C6B2E5;
    background: #F6F0FF;
    transition: background 0.2s;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 18px 18px 24px;
    font-size: 18px;
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    position: relative;
    color: #4F3B74;
    font-weight: bold;
}

.faq-question:hover {
    background: #F2E9FF;
    color: #7B5FA8;
}

.faq-question:focus {
    outline: none;
    box-shadow: none;
}
.faq-question:focus-visible {
    outline: 2px solid #C6B2E5;
    outline-offset: 2px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 24px;
    font-weight: bold;
    color: #7B5FA8;
    top: 50%;
    transform: translateY(-50%);

    transition: color 0.2s;
}

.faq-item.active .faq-question::after {
    content: "–";
    color: #4F3B74;
}

.faq-answer {
    display: none;
    padding: 15px 24px 18px 30px;
    font-size: 16px;
    color: #4F3B74;
    background: #FAF7FF;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background: #EDE2FF;
    border-left: 6px solid #7B5FA8;
    color: #4F3B74;
}

.faq-item.active .faq-question:hover {
    background: #E4D7FF;
}

.faq-item:not(.active) .faq-question,
.faq-item:not(.active) .faq-question:hover,
.faq-item:not(.active) .faq-question:focus {
    background: #FFFFFF !important;
    color: #4F3B74 !important;
    border-left: none !important;
}
