/* FAQ Section Styles */
.faq-accordion {
    margin-bottom: 2rem;
}

.faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.faq-item:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(27, 59, 95, 0.12) !important;
}

.faq-item.active {
    border-color: #1B3B5F !important;
}

.faq-question {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.faq-question:hover {
    background-color: #f8f9fa !important;
    color: #1B3B5F !important;
}

.faq-item.active .faq-question {
    background-color: rgba(27, 59, 95, 0.05) !important;
    color: #1B3B5F !important;
}

.faq-icon {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #EE2A24 !important;
}

.faq-answer {
    animation: slideDown 0.3s ease-out;
    line-height: 1.8;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem !important;
    }

    .faq-answer {
        padding: 1rem !important;
        font-size: 0.95rem;
    }

    .faq-item {
        margin-bottom: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .display-6 {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 0.85rem 1rem !important;
    }

    .faq-icon {
        font-size: 0.75rem;
    }
}
