/* style/faq-technical-issues.css */

/* General styles for the FAQ page content */
.page-faq-technical-issues {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text on light background */
    background-color: #f8f9fa; /* Light background */
}

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

/* Hero Section */
.page-faq-technical-issues__hero {
    background: linear-gradient(135deg, #003366, #1a4f8a); /* Primary color gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-faq-technical-issues__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-faq-technical-issues__hero .page-faq-technical-issues__container {
    position: relative;
    z-index: 1;
}

.page-faq-technical-issues__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFCC00; /* Secondary color for title */
}

.page-faq-technical-issues__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-technical-issues__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Secondary color for CTA button */
    color: #003366; /* Primary color for text on CTA */
    padding: 15px 30px;
    border-radius: 5px;
    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-faq-technical-issues__cta-button:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* Intro Section */
.page-faq-technical-issues__intro-section {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.page-faq-technical-issues__intro-section p {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ List Section */
.page-faq-technical-issues__faq-list {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-faq-technical-issues__section-title {
    font-size: 2.5em;
    color: #003366; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-faq-technical-issues__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Secondary color underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-faq-technical-issues__faq-category {
    margin-bottom: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.page-faq-technical-issues__category-title {
    font-size: 1.8em;
    color: #003366; /* Primary color for category titles */
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

/* Accordion Styles */
.page-faq-technical-issues__accordion {
    border-radius: 8px;
    overflow: hidden;
}

.page-faq-technical-issues__faq-item {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 10px;
}

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

.page-faq-technical-issues__faq-question {
    display: block;
    padding: 20px 25px;
    background-color: #003366; /* Primary color for question background */
    color: #ffffff; /* White text for contrast */
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    position: relative;
    padding-right: 50px; /* Space for arrow */
}

.page-faq-technical-issues__faq-question:hover {
    background-color: #004488; /* Slightly lighter primary on hover */
}

.page-faq-technical-issues__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-faq-technical-issues__faq-item[open] .page-faq-technical-issues__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-faq-technical-issues__faq-answer {
    padding: 20px 25px;
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 5px 5px;
    color: #333333;
    font-size: 1em;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq-technical-issues__faq-item[open] .page-faq-technical-issues__faq-answer {
    /* max-height is handled by JS for smooth animation */
    padding: 20px 25px;
    transition: max-height 0.7s ease-in, padding 0.7s ease-in;
}

.page-faq-technical-issues__faq-answer p,
.page-faq-technical-issues__faq-answer ul,
.page-faq-technical-issues__faq-answer ol {
    margin-bottom: 15px;
}

.page-faq-technical-issues__faq-answer ul,
.page-faq-technical-issues__faq-answer ol {
    padding-left: 25px;
}

.page-faq-technical-issues__faq-answer a {
    color: #003366; /* Primary color for links */
    text-decoration: underline;
    font-weight: bold;
}

.page-faq-technical-issues__faq-answer a:hover {
    color: #FFCC00; /* Secondary color on hover */
}

.page-faq-technical-issues__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Final CTA Section */
.page-faq-technical-issues__final-cta {
    text-align: center;
    padding: 50px 0;
    background-color: #003366; /* Primary color background */
    color: #ffffff;
    border-radius: 8px;
    margin-top: 60px;
}

.page-faq-technical-issues__final-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-technical-issues__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-faq-technical-issues__cta-button--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-faq-technical-issues__cta-button--primary:hover {
    background-color: #e6b800;
}

.page-faq-technical-issues__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFCC00;
    color: #FFCC00;
}

.page-faq-technical-issues__cta-button--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq-technical-issues__title {
        font-size: 2.5em;
    }

    .page-faq-technical-issues__subtitle {
        font-size: 1.1em;
    }

    .page-faq-technical-issues__section-title {
        font-size: 2em;
    }

    .page-faq-technical-issues__category-title {
        font-size: 1.5em;
    }

    .page-faq-technical-issues__faq-question {
        font-size: 1em;
        padding: 15px 20px;
        padding-right: 40px;
    }

    .page-faq-technical-issues__faq-question::after {
        right: 20px;
        font-size: 1.2em;
    }

    .page-faq-technical-issues__faq-answer {
        padding: 15px 20px;
    }

    .page-faq-technical-issues__faq-category {
        padding: 20px;
    }

    .page-faq-technical-issues__hero,
    .page-faq-technical-issues__faq-list,
    .page-faq-technical-issues__intro-section,
    .page-faq-technical-issues__final-cta {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-faq-technical-issues__title {
        font-size: 2em;
    }
    .page-faq-technical-issues__subtitle {
        font-size: 1em;
    }
    .page-faq-technical-issues__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq-technical-issues__section-title {
        font-size: 1.8em;
    }
    .page-faq-technical-issues__category-title {
        font-size: 1.3em;
    }
    .page-faq-technical-issues__cta-group {
        flex-direction: column;
        align-items: center;
    }
}