/* style/faq-tech-support-troubleshooting.css */
.page-faq-tech-support-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #0A192F; /* Dark blue for main text */
    line-height: 1.6;
    background-color: #F8F8F8; /* Light background for readability */
}

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

.page-faq-tech-support-troubleshooting-hero {
    background: linear-gradient(135deg, #0A192F, #334A6A); /* Dark blue gradient */
    color: #FFFFFF; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-faq-tech-support-troubleshooting-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-tech-support-troubleshooting-hero > .page-faq-tech-support-troubleshooting-container {
    position: relative;
    z-index: 1;
}

.page-faq-tech-support-troubleshooting-main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-tech-support-troubleshooting-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-faq-tech-support-troubleshooting-section {
    padding: 60px 0;
    border-bottom: 1px solid #E0E0E0;
}

.page-faq-tech-support-troubleshooting-section:last-of-type {
    border-bottom: none;
}

.page-faq-tech-support-troubleshooting-section-title {
    font-size: 2.5em;
    color: #0A192F; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-faq-tech-support-troubleshooting-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-faq-tech-support-troubleshooting-section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #333;
}

.page-faq-tech-support-troubleshooting-section-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-faq-tech-support-troubleshooting-h3-issue {
    font-size: 1.6em;
    color: #0A192F; /* Dark blue for sub-headings */
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-faq-tech-support-troubleshooting ul,
.page-faq-tech-support-troubleshooting ol {
    margin-left: 25px;
    margin-bottom: 20px;
    list-style-type: disc;
    color: #333;
}

.page-faq-tech-support-troubleshooting ol {
    list-style-type: decimal;
}

.page-faq-tech-support-troubleshooting li {
    margin-bottom: 10px;
}

.page-faq-tech-support-troubleshooting strong {
    color: #0A192F;
}

.page-faq-tech-support-troubleshooting-cta-section {
    background-color: #0A192F; /* Dark blue background for CTA */
    color: #FFFFFF;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-tech-support-troubleshooting-cta-section p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #E0E0E0;
}

.page-faq-tech-support-troubleshooting-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-faq-tech-support-troubleshooting-btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-faq-tech-support-troubleshooting-btn-primary:hover {
    background-color: #E0B500;
    transform: translateY(-2px);
}

.page-faq-tech-support-troubleshooting-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-faq-tech-support-troubleshooting-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

/* FAQ Accordion Styles */
.page-faq-tech-support-troubleshooting-faq-accordion {
    margin-top: 40px;
}

.page-faq-tech-support-troubleshooting-accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-faq-tech-support-troubleshooting-accordion-header {
    padding: 20px;
    cursor: pointer;
    font-size: 1.3em;
    color: #0A192F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F0F0F0;
    transition: background-color 0.3s ease;
}

.page-faq-tech-support-troubleshooting-accordion-header:hover {
    background-color: #E6E6E6;
}

.page-faq-tech-support-troubleshooting-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-faq-tech-support-troubleshooting-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-faq-tech-support-troubleshooting-accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #333;
}

.page-faq-tech-support-troubleshooting-accordion-content.active {
    max-height: 500px; /* Adjust based on content */
    padding: 20px;
}

.page-faq-tech-support-troubleshooting-accordion-content p {
    margin-bottom: 15px;
}

.page-faq-tech-support-troubleshooting-accordion-content ul,
.page-faq-tech-support-troubleshooting-accordion-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-faq-tech-support-troubleshooting-accordion-content li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq-tech-support-troubleshooting-main-title {
        font-size: 2.5em;
    }

    .page-faq-tech-support-troubleshooting-subtitle {
        font-size: 1em;
    }

    .page-faq-tech-support-troubleshooting-section-title {
        font-size: 2em;
    }

    .page-faq-tech-support-troubleshooting-h3-issue {
        font-size: 1.4em;
    }

    .page-faq-tech-support-troubleshooting-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-faq-tech-support-troubleshooting-cta-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .page-faq-tech-support-troubleshooting-main-title {
        font-size: 2em;
    }

    .page-faq-tech-support-troubleshooting-section-title {
        font-size: 1.8em;
    }

    .page-faq-tech-support-troubleshooting-h3-issue {
        font-size: 1.2em;
    }

    .page-faq-tech-support-troubleshooting-accordion-header {
        font-size: 1.1em;
    }
}