.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #eee;
}

.faq-question-text {
    flex: 1;
    color: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 15px;
    font-size: 18px;
    line-height: 1;
    color: inherit;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    color: var(--brand-color);
    transform: rotate(45deg);
}

.faq-answer {
    background-color: #fff;
    padding: 16px 20px 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}
