.faq-container {
    max-width: 90%;
    margin: 30px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq {
    margin-bottom: 15px;
    border: 1px solid #4a90e2;
    border-radius: 8px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: #357ab8;
    background: linear-gradient(135deg, #e6f2ff, #ffffff);
}

.faq-question {
    cursor: pointer;
    font-weight: 600;
    color: #357ab8;
    padding: 8px 0;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 20px;
    color: #357ab8;
    transition: transform 0.3s ease;
}

.faq-answer.visible + .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-top: 12px;
    color: #444;
    line-height: 1.6;
    animation: fadeSlide 0.4s ease-in-out;
}

.faq-answer.visible {
    display: block;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-container { max-width: 100%; padding: 10px; }
    .faq { padding: 15px; font-size: 16px; }
    .faq-question { font-size: 18px; }
    .faq-answer { font-size: 16px; }
}

@media (max-width: 480px) {
    .faq-container { max-width: 100%; padding: 5px; }
    .faq { padding: 12px; font-size: 15px; }
    .faq-question { font-size: 16px; }
    .faq-answer { font-size: 15px; }
}

