/* FAQ Page Styles */
.faq-section {
    margin-bottom: 40px;
}

.faq-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.faq-category h2 {
    color: #2563eb;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2563eb;
}

.faq-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #2563eb;
}

.faq-question {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-question::before {
    content: "Q. ";
    color: #2563eb;
    font-weight: 800;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.7;
    padding-left: 20px;
}

.faq-answer::before {
    content: "A. ";
    color: #10b981;
    font-weight: 700;
    margin-left: -20px;
    margin-right: 8px;
}

.contact-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.contact-cta h2 {
    margin-bottom: 15px;
    color: white;
}

.contact-cta p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-btn {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
