/* FAQ Page Specific Styles */

/* Page Header Section */
.faq-header {
    background: linear-gradient(rgba(0, 0, 32, 0.7), rgba(0, 0, 32, 0.7)), url('../images/faq-header-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.page-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* FAQ Main Section */
.faq-main {
    padding: 80px 0;
    background-color: #fff;
}

.faq-content {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

/* FAQ Sidebar */
.faq-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-header h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-list li {
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    display: block;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-list li a:hover {
    background-color: #f8f9fa;
    color: #5e2d91;
}

.category-list li.active a {
    background-color: #5e2d91;
    color: #fff;
    font-weight: 600;
}

.sidebar-cta {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #5e2d91;
}

.sidebar-cta h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.sidebar-cta p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.sidebar-cta .btn {
    display: inline-block;
    background-color: #5e2d91;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 14px;
}

.sidebar-cta .btn:hover {
    background-color: #4a2372;
}

/* FAQ Questions */
.faq-questions {
    flex: 1;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* Accordion Styles */
.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.accordion-header {
    padding: 20px 25px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f1f3f5;
}

.accordion-header h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    flex: 1;
}

.accordion-icon {
    color: #5e2d91;
    font-size: 16px;
    margin-left: 15px;
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 20px 0;
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.accordion-item.active .accordion-header {
    background-color: #f1f3f5;
    border-bottom: 1px solid #eee;
}

/* Contact CTA Section */
.contact-cta {
    background-color: #5e2d91;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #fff;
    color: #5e2d91;
}

.btn-primary:hover {
    background-color: #f8f9fa;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-buttons .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header .subtitle {
    color: #5e2d91;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header .title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.section-header .title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #5e2d91;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .faq-content {
        flex-direction: column;
    }
    
    .faq-sidebar {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .category-list li {
        border: 1px solid #eee;
        border-radius: 30px;
        flex-grow: 1;
        text-align: center;
    }
    
    .category-list li a {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-header .title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 32px;
    }
    
    .faq-header {
        padding: 60px 0;
    }
    
    .faq-main {
        padding: 60px 0;
    }
    
    .section-header .title {
        font-size: 26px;
    }
    
    .accordion-header h4 {
        font-size: 16px;
    }
    
    .accordion-content p {
        font-size: 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .page-header-content h1 {
        font-size: 28px;
    }
    
    .faq-header {
        padding: 40px 0;
    }
    
    .faq-main {
        padding: 40px 0;
    }
    
    .section-header .title {
        font-size: 22px;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-content {
        padding: 0 20px;
    }
    
    .category-list li a {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
} 