:root {
    --main-color: #11A84E;
    --accent-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg-color: #11271B;
    --background-color-page: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

/* Base styles for the page */
.page-blog-top88-faq-troubleshooting {
    font-family: Arial, sans-serif;
    color: var(--text-main-color);
    background-color: var(--background-color-page);
    line-height: 1.6;
}

.page-blog-top88-faq-troubleshooting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-top88-faq-troubleshooting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, relying on body for header offset */
    background-color: var(--background-color-page);
}

.page-blog-top88-faq-troubleshooting__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 40px; /* Space between image and text */
}

.page-blog-top88-faq-troubleshooting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-top88-faq-troubleshooting__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: var(--text-main-color);
}

.page-blog-top88-faq-troubleshooting__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-top88-faq-troubleshooting__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

/* Section titles */
.page-blog-top88-faq-troubleshooting__section-title {
    font-size: 2.2em;
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Buttons */
.page-blog-top88-faq-troubleshooting__btn-primary,
.page-blog-top88-faq-troubleshooting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for mobile responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    max-width: 100%; /* For mobile responsiveness */
}

.page-blog-top88-faq-troubleshooting__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text for contrast */
    border: none;
    margin: 10px;
}

.page-blog-top88-faq-troubleshooting__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-top88-faq-troubleshooting__btn-secondary {
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    margin: 10px;
}

.page-blog-top88-faq-troubleshooting__btn-secondary:hover {
    background: var(--main-color);
    color: #ffffff;
}

.page-blog-top88-faq-troubleshooting__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    margin-top: 30px;
    width: 100%; /* For mobile responsiveness */
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    overflow: hidden;
}

/* Introduction Section */
.page-blog-top88-faq-troubleshooting__introduction-section {
    padding: 60px 0;
    background-color: var(--background-color-page);
    color: var(--text-main-color);
}

.page-blog-top88-faq-troubleshooting__text-block {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: var(--text-secondary-color);
}

/* FAQ Section */
.page-blog-top88-faq-troubleshooting__faq-section {
    padding: 60px 0;
    background-color: var(--card-bg-color); /* Card background for FAQ section */
    color: var(--text-main-color);
}

.page-blog-top88-faq-troubleshooting__faq-list {
    margin-top: 40px;
}

.page-blog-top88-faq-troubleshooting__faq-item {
    background-color: var(--background-color-page); /* Deeper background for individual FAQ items */
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main-color);
}

.page-blog-top88-faq-troubleshooting__faq-item summary {
    list-style: none; /* Remove default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--gold-color); /* FAQ question color */
    transition: background-color 0.3s ease;
}

.page-blog-top88-faq-troubleshooting__faq-item summary::-webkit-details-marker {
    display: none; /* Hide Chrome default marker */
}

.page-blog-top88-faq-troubleshooting__faq-item summary:hover {
    background-color: rgba(17, 168, 78, 0.1); /* Subtle hover effect using main color RGB */
}

.page-blog-top88-faq-troubleshooting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--main-color);
}

.page-blog-top88-faq-troubleshooting__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: var(--text-secondary-color);
}

.page-blog-top88-faq-troubleshooting__faq-answer p {
    margin-bottom: 15px;
}

.page-blog-top88-faq-troubleshooting__faq-answer .page-blog-top88-faq-troubleshooting__btn-secondary {
    margin: 10px 0 0 0;
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Troubleshooting Guide Section */
.page-blog-top88-faq-troubleshooting__troubleshooting-guide {
    padding: 60px 0;
    background-color: var(--background-color-page);
    color: var(--text-main-color);
}

.page-blog-top88-faq-troubleshooting__image-content {
    width: 100%;
    height: auto;
    display: block;
    max-width: 800px;
    margin: 0 auto 40px auto;
    border-radius: 10px;
    object-fit: cover;
}

.page-blog-top88-faq-troubleshooting__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-top88-faq-troubleshooting__guide-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    color: var(--text-main-color);
}

.page-blog-top88-faq-troubleshooting__guide-heading {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

/* Tips Section */
.page-blog-top88-faq-troubleshooting__tips-section {
    padding: 60px 0;
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
}

.page-blog-top88-faq-troubleshooting__tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-top88-faq-troubleshooting__tip-item {
    background-color: var(--background-color-page);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: var(--text-main-color);
}

.page-blog-top88-faq-troubleshooting__tip-icon {
    width: 100%;
    height: auto;
    max-width: 250px; /* Ensure images are not too wide */
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-top88-faq-troubleshooting__tip-heading {
    font-size: 1.3em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

/* Call to Action Section */
.page-blog-top88-faq-troubleshooting__cta-section {
    padding: 60px 0;
    background-color: var(--background-color-page);
    text-align: center;
    color: var(--text-main-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-top88-faq-troubleshooting {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-top88-faq-troubleshooting__container {
        padding: 0 15px;
    }

    .page-blog-top88-faq-troubleshooting__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-blog-top88-faq-troubleshooting__main-title {
        font-size: 2em;
    }

    .page-blog-top88-faq-troubleshooting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-top88-faq-troubleshooting__btn-primary,
    .page-blog-top88-faq-troubleshooting__btn-secondary,
    .page-blog-top88-faq-troubleshooting a[class*="button"],
    .page-blog-top88-faq-troubleshooting a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin: 5px 0 !important; /* Stack buttons vertically */
    }

    .page-blog-top88-faq-troubleshooting__cta-buttons {
        flex-direction: column !important; /* Stack buttons */
        gap: 10px;
        padding: 0 15px;
    }

    .page-blog-top88-faq-troubleshooting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-top88-faq-troubleshooting__hero-image-wrapper,
    .page-blog-top88-faq-troubleshooting__image-content,
    .page-blog-top88-faq-troubleshooting__tip-icon,
    .page-blog-top88-faq-troubleshooting__faq-item,
    .page-blog-top88-faq-troubleshooting__guide-item,
    .page-blog-top88-faq-troubleshooting__tip-item,
    .page-blog-top88-faq-troubleshooting__introduction-section,
    .page-blog-top88-faq-troubleshooting__faq-section,
    .page-blog-top88-faq-troubleshooting__troubleshooting-guide,
    .page-blog-top88-faq-troubleshooting__tips-section,
    .page-blog-top88-faq-troubleshooting__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-top88-faq-troubleshooting__faq-item summary,
    .page-blog-top88-faq-troubleshooting__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-top88-faq-troubleshooting__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-blog-top88-faq-troubleshooting__hero-content {
        padding: 0 15px;
    }
}