/* FAQ Container */
.faq-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* FAQ Heading */
.faq-heading {
    text-align: center !important;
    margin-bottom: 2rem !important;
    color: #0E386F !important;
}

.faq-heading h2 {
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
}

.faq-heading p {
    color: #6c757d !important;
    font-size: 1.1rem !important;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 1rem !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(14, 56, 111, 0.15) !important;
    background: white !important;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.faq-question {
    padding: 1.25rem 1.5rem !important;
    background: white !important;
    font-weight: 600 !important;
    color: #0E386F !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.faq-question:hover {
    background-color: rgba(14, 56, 111, 0.03) !important;
}

.faq-question i {
    color: #0E386F !important;
    transition: transform 0.3s ease !important;
    font-size: 0.9rem !important;
}

.faq-answer {
    padding: 0 1.5rem !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    color: #333333 !important;
    line-height: 1.7 !important;
    font-size: 0.95rem !important;
    background: white !important;
}

.faq-item.active .faq-question {
    background-color: rgba(14, 56, 111, 0.05) !important;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg) !important;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem !important;
    max-height: 500px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 1rem !important;
    }
    
    .faq-heading h2 {
        font-size: 1.5rem !important;
    }
    
    .faq-question {
        padding: 1rem !important;
    }
    
    .faq-answer {
        padding: 0 1rem !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem !important;
    }
}