/* Service & Support Page Styling */

.service-support-page {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}


/* FAQs Section */
.faqs-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-group {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    border-left: 4px solid #008080;
    padding-left: 15px;
}

.faq-accordion {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-header {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-header h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.faq-icon {
    font-size: 14px;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-header:hover h4 {
    color: #008080;
}

.faq-item.active .faq-header h4 {
    color: #008080;
}

.faq-item.active .faq-icon {
    transform: rotate(180_deg);
    color: #008080;
}

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

.faq-item.active .faq-content {
    max-height: 500px;
    /* Adjust as needed */
    padding-bottom: 20px;
}

.faq-content p {
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .service-support-page {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .faq-category-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .faq-header {
        padding: 15px 0;
    }

    .faq-header h4 {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-content p {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-support-page {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }
}