.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    text-align: left;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover,
.faq-question.open { background: #f4fdf9; color: #23cc88; }

.faq-question .faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
    color: #23cc88;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid #f0f0f0;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer a { color: #23cc88; font-weight: 600; }

.faq-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 40px 0 20px;
    padding-left: 14px;
    border-left: 4px solid #23cc88;
}
