/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section .section-header {
    margin-bottom: 50px;
}

.faq-section .section-header h2 {
    font-size: 2.5rem;
    color: #2a3f5f;
    margin: 0 auto 15px auto;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
}

.faq-section .section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #2a7fba;
    margin: 15px auto 0;
    border-radius: 2px;
}

.faq-section .section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 25px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: #2a3f5f;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #2a7fba;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: #2a7fba;
    color: #fff;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
}

.faq-question.active + .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

/* Staggered animation */
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }