.slfaq-accordion {
    max-width: 800px;
    margin: 0 auto;
    font-family: "Segoe UI", sans-serif;
}

.slfaq-item {
    border-bottom: 1px solid #ddd;
}

.slfaq-question {
    background: #f7f7f7;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.slfaq-question:hover {
    background: #eaeaea;
}

.slfaq-answer {
    display: none;
    padding: 15px 20px;
    background: #fff;
    animation: fadeIn 0.3s ease;
}

.slfaq-answer.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
    .slfaq-question, .slfaq-answer {
        padding: 12px 16px;
    }
}
