/* FAQs Page Styles */
.page-header {
    background: linear-gradient(135deg, #004a9f 0%, #003a7a 100%);
    color: white;
    padding: 3rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.page-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.page-description {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 1.2rem;
    max-width: 700px;
}

.faq-container {
    padding: 4rem 0;
    background: #f8f9fa;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: #004a9f;
    border-color: #004a9f;
    color: white;
}

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

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    padding-right: 1rem;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: #004a9f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #f47920;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

.faq-answer-content p {
    margin: 0;
}

.faq-answer-content ul {
    margin: 1rem 0 0 0;
    padding-left: 1.25rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-cta h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.faq-cta p {
    color: #666;
    margin-bottom: 1.5rem;
}

.faq-cta-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #004a9f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    background: #f47920;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 121, 32, 0.3);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .faq-container {
        padding: 3rem 0;
    }

    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.75rem;
    }

    .faq-container {
        padding: 2rem 0;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }
}