.faq-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-accordion {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.faq-item {
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.faq-question {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px 32px;
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.faq-question.active {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
}

.faq-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    background: white;
    transition: all 0.4s ease;
}

.faq-answer.show {
    max-height: 300px;
    padding: 24px 32px;
}

@media (max-width: 768px) {
    .faq-question { padding: 20px; font-size: 1rem; }
    .faq-icon { right: 20px; }
    .faq-answer { padding: 0 20px; }
    .faq-answer.show { padding: 20px; }
}
