.section-faq {
    padding: 7em 0;
    background: #fff;
}

.faq-list {
    margin-top: 3em;
}

.faq-item {
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.faq-question h3 {
    color: #333;
    font-size: 1.2em;
    margin: 0 0 15px;
    font-weight: 600;
}

.faq-question p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .faq-item {
        padding: 20px;
        margin-bottom: 20px;
    }
}