/* style/support-faq-comprehensive.css */
.page-support-faq-comprehensive {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-support-faq-comprehensive__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-support-faq-comprehensive__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.page-support-faq-comprehensive__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 204, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.page-support-faq-comprehensive__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-support-faq-comprehensive__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support-faq-comprehensive__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-support-faq-comprehensive__btn {
    display: inline-block;
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Dark Blue */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support-faq-comprehensive__btn:hover {
    background-color: #e6b800; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-support-faq-comprehensive__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-support-faq-comprehensive__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-support-faq-comprehensive__btn--secondary {
    background-color: #004d99; /* Medium blue */
    color: #ffffff;
    margin-left: 15px;
}

.page-support-faq-comprehensive__btn--secondary:hover {
    background-color: #003366; /* Dark blue */
}

.page-support-faq-comprehensive__hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
    z-index: 1;
}

.page-support-faq-comprehensive__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-support-faq-comprehensive__faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-support-faq-comprehensive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-support-faq-comprehensive__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-support-faq-comprehensive__faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.page-support-faq-comprehensive__category-btn {
    background-color: #e0e0e0;
    color: #003366;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #ccc;
}

.page-support-faq-comprehensive__category-btn:hover,
.page-support-faq-comprehensive__category-btn.active {
    background-color: #003366;
    color: #FFCC00;
    border-color: #003366;
}

.page-support-faq-comprehensive__faq-list {
    display: grid;
    gap: 40px;
}

.page-support-faq-comprehensive__faq-category {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.page-support-faq-comprehensive__category-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFCC00;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-support-faq-comprehensive__accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.page-support-faq-comprehensive__accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.page-support-faq-comprehensive__accordion-header {
    font-size: 1.25em;
    color: #003366;
    padding: 18px 0;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support-faq-comprehensive__accordion-header:hover {
    color: #FFCC00;
}

.page-support-faq-comprehensive__accordion-header::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-support-faq-comprehensive__accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-support-faq-comprehensive__accordion-content {
    padding: 0 10px 20px 0;
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-support-faq-comprehensive__accordion-content.active {
    max-height: 500px; /* Adjust as needed */
    padding: 0 10px 20px 0;
}

.page-support-faq-comprehensive__accordion-content p {
    margin-bottom: 10px;
}

.page-support-faq-comprehensive__accordion-content ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 10px;
}

.page-support-faq-comprehensive__accordion-content ol {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 10px;
}

.page-support-faq-comprehensive__accordion-content li {
    margin-bottom: 5px;
}

.page-support-faq-comprehensive__accordion-content a {
    color: #003366;
    text-decoration: underline;
}

.page-support-faq-comprehensive__accordion-content a:hover {
    color: #FFCC00;
}

.page-support-faq-comprehensive__image-inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-support-faq-comprehensive__cta-section {
    background-color: #003366; /* Dark blue */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-support-faq-comprehensive__cta-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFCC00;
}

.page-support-faq-comprehensive__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 700px;
}

.page-support-faq-comprehensive__cta-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
}

.page-support-faq-comprehensive__cta-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-support-faq-comprehensive .highlight {
    color: #FFCC00;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-support-faq-comprehensive__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
        gap: 50px;
    }

    .page-support-faq-comprehensive__hero-content {
        flex: 1;
    }

    .page-support-faq-comprehensive__hero-image-wrapper {
        flex: 1;
        margin-top: 0;
    }

    .page-support-faq-comprehensive__title {
        font-size: 4em;
    }

    .page-support-faq-comprehensive__subtitle {
        font-size: 1.5em;
    }

    .page-support-faq-comprehensive__cta-section {
        flex-direction: row;
        text-align: left;
        padding: 80px 40px;
        gap: 50px;
    }

    .page-support-faq-comprehensive__cta-content {
        flex: 1;
    }

    .page-support-faq-comprehensive__cta-image-wrapper {
        flex: 1;
        margin-top: 0;
    }

    .page-support-faq-comprehensive__cta-title {
        font-size: 3.5em;
    }
}

@media (max-width: 767px) {
    .page-support-faq-comprehensive__title {
        font-size: 2.5em;
    }

    .page-support-faq-comprehensive__subtitle {
        font-size: 1.1em;
    }

    .page-support-faq-comprehensive__section-title {
        font-size: 2em;
    }

    .page-support-faq-comprehensive__category-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-support-faq-comprehensive__category-title {
        font-size: 1.6em;
    }

    .page-support-faq-comprehensive__accordion-header {
        font-size: 1.1em;
    }

    .page-support-faq-comprehensive__cta-title {
        font-size: 2.2em;
    }

    .page-support-faq-comprehensive__cta-description {
        font-size: 1em;
    }
    .page-support-faq-comprehensive__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}