.simple-faq-wrapper {
    display: grid;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1.4;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    font-size: 1.2em;
    margin-left: 10px;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
    font-size: 1em;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
}
