/* FAQ Section */

.faq {
    background: white;
    padding: 5rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: #0066cc;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1ff 100%);
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 1rem;
    color: #0a1929;
    transition: all 0.3s ease;
    border: none;
}

.faq-item[open] .faq-question {
    background: linear-gradient(135deg, #0066cc, #00549e);
    color: white;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e8f1ff 0%, #d9e9ff 100%);
}

.faq-item[open] .faq-question:hover {
    background: linear-gradient(135deg, #0052a3, #004080);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e8e8e8;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}
