/* FAQ Page Styles */

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.faq-heading {
    text-align: center;
    margin-bottom: 30px;
    font-family: inherit;
}

.faq-heading h2 {
    color: #0b0c41;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-heading p {
    color: #666;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    color: #0A0E2F;
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0A0E2F;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    color: #0A0E2F;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #0A0E2F;
    min-width: 30px;
    text-align: center;
}

.faq-answer {
    display: none;
    padding: 0 25px 25px 25px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #eee;
    text-align: left;
}

.faq-answer p {
    margin: 20px 0 0 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A0E2F 0%, #1a1f4a 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #0A0E2F;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-category h2 {
        font-size: 24px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}
