/* style/resources-tx88-faq-troubleshooting.css */

/* Base styles for the page content */
.page-resources-tx88-faq-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #1A2B4C; /* Main text color */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for sections */
}

.page-resources-tx88-faq-troubleshooting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-tx88-faq-troubleshooting__hero {
    background: linear-gradient(135deg, #1A2B4C, #3A506B);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-tx88-faq-troubleshooting__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:tx88,abstract,pattern,hero_overlay]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-tx88-faq-troubleshooting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-resources-tx88-faq-troubleshooting__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* General Section Styling */
.page-resources-tx88-faq-troubleshooting__content-section {
    padding: 60px 0;
}

.page-resources-tx88-faq-troubleshooting__bg-light {
    background-color: #f8f9fa;
}

.page-resources-tx88-faq-troubleshooting__section-title {
    font-size: 2.5em;
    color: #1A2B4C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-tx88-faq-troubleshooting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-tx88-faq-troubleshooting__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333;
}

/* Image Styling */
.page-resources-tx88-faq-troubleshooting__image-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-tx88-faq-troubleshooting__image-left {
    float: left;
    width: 45%;
    margin-right: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.page-resources-tx88-faq-troubleshooting__image-right {
    float: right;
    width: 45%;
    margin-left: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.page-resources-tx88-faq-troubleshooting__image-small {
    max-width: 300px;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-resources-tx88-faq-troubleshooting__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 10px 10px 10px 0;
}

.page-resources-tx88-faq-troubleshooting__btn--primary {
    background-color: #FFD700;
    color: #1A2B4C;
}

.page-resources-tx88-faq-troubleshooting__btn--primary:hover {
    background-color: #E5C100;
    color: #0F1A2B;
}

.page-resources-tx88-faq-troubleshooting__btn--secondary {
    background-color: #1A2B4C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-tx88-faq-troubleshooting__btn--secondary:hover {
    background-color: #0F1A2B;
    color: #FFD700;
    border-color: #E5C100;
}

/* FAQ Accordion */
.page-resources-tx88-faq-troubleshooting__faq-section {
    overflow: hidden;
    padding-bottom: 30px; /* Adjust for floating images */
}

.page-resources-tx88-faq-troubleshooting__accordion {
    margin-top: 30px;
    clear: both; /* Clear floats from images */
}

.page-resources-tx88-faq-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-resources-tx88-faq-troubleshooting__accordion-header {
    padding: 20px 25px;
    background-color: #1A2B4C;
    color: #FFD700;
    cursor: pointer;
    font-size: 1.3em;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-tx88-faq-troubleshooting__accordion-header:hover {
    background-color: #2A3E5C;
}

.page-resources-tx88-faq-troubleshooting__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-tx88-faq-troubleshooting__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-tx88-faq-troubleshooting__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fefefe;
    color: #333;
}

.page-resources-tx88-faq-troubleshooting__accordion-content.active {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-resources-tx88-faq-troubleshooting__accordion-content p {
    margin-bottom: 15px;
    font-size: 1em;
}

.page-resources-tx88-faq-troubleshooting__accordion-content .page-resources-tx88-faq-troubleshooting__btn {
    margin-top: 10px;
}

/* CTA Section */
.page-resources-tx88-faq-troubleshooting__cta-section {
    background-color: #1A2B4C;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-resources-tx88-faq-troubleshooting__cta-section .page-resources-tx88-faq-troubleshooting__section-title {
    color: #FFD700;
}

.page-resources-tx88-faq-troubleshooting__cta-section .page-resources-tx88-faq-troubleshooting__section-title::after {
    background-color: #FFD700;
}

.page-resources-tx88-faq-troubleshooting__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Conclusion Section */
.page-resources-tx88-faq-troubleshooting__conclusion-section {
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
}

.page-resources-tx88-faq-troubleshooting__action-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

    .page-resources-tx88-faq-troubleshooting__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-tx88-faq-troubleshooting__section-title {
        font-size: 2em;
    }

    .page-resources-tx88-faq-troubleshooting__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-resources-tx88-faq-troubleshooting__accordion-content {
        padding: 15px 20px;
    }

    .page-resources-tx88-faq-troubleshooting__image-left,
    .page-resources-tx88-faq-troubleshooting__image-right {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

    .page-resources-tx88-faq-troubleshooting__action-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-tx88-faq-troubleshooting__btn {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .page-resources-tx88-faq-troubleshooting__hero-title {
        font-size: 2em;
    }

    .page-resources-tx88-faq-troubleshooting__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-tx88-faq-troubleshooting__section-title {
        font-size: 1.8em;
    }

    .page-resources-tx88-faq-troubleshooting__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}