/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
}

.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.faq-question:hover {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.02);
}

.faq-question.active {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.05);
    border-bottom: 1px solid #e9ecef;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: #6c757d;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-question:hover .faq-arrow {
    color: #0066cc;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
    color: #0066cc;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 102, 204, 0.01);
}

.faq-answer.show {
    max-height: 200px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    margin: 0;
    padding-top: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 48px;
    text-align: center;
}

.faq-cta-box {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.2);
}

.faq-cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.faq-cta-text {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9;
    color: white;
}

.faq-cta-btn {
    background: white;
    color: #0066cc;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-cta-btn:hover {
    color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-answer.show {
        padding: 0 20px 16px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding-top: 12px;
    }
    
    .faq-cta-box {
        padding: 24px 20px;
    }
    
    .faq-cta-title {
        font-size: 20px;
    }
    
    .faq-cta-text {
        font-size: 14px;
    }
    
    .faq-cta-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .faq-answer.show {
        padding: 0 16px 14px 16px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .faq-cta {
        margin-top: 32px;
    }
    
    .faq-cta-box {
        padding: 20px 16px;
    }
    
    .faq-cta-title {
        font-size: 18px;
    }
    
    .faq-cta-btn {
        width: 100%;
        justify-content: center;
    }
}