/* style/blog-f8be-login-troubleshooting.css */
:root {
    --primary-color: #11A84E;
    --secondary-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;
}

.page-blog-f8be-login-troubleshooting {
    background-color: var(--background-color-page);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-blog-f8be-login-troubleshooting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    background-color: var(--card-bg-color);
}

.page-blog-f8be-login-troubleshooting__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-blog-f8be-login-troubleshooting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-blog-f8be-login-troubleshooting__hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 20px;
}

.page-blog-f8be-login-troubleshooting__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-f8be-login-troubleshooting__description {
    font-size: 1.1rem;
    color: var(--text-main-color);
    margin-bottom: 30px;
}

.page-blog-f8be-login-troubleshooting__section {
    padding: 60px 0;
}

.page-blog-f8be-login-troubleshooting__dark-bg {
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
}

.page-blog-f8be-login-troubleshooting__light-bg {
    background-color: var(--background-color-page);
    color: var(--text-main-color);
}

.page-blog-f8be-login-troubleshooting__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-f8be-login-troubleshooting__section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-secondary-color);
}

.page-blog-f8be-login-troubleshooting__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.page-blog-f8be-login-troubleshooting__content-block--reverse {
    flex-direction: row-reverse;
}

.page-blog-f8be-login-troubleshooting__image-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-f8be-login-troubleshooting__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-f8be-login-troubleshooting__text-content {
    flex: 1.5;
    min-width: 300px;
}

.page-blog-f8be-login-troubleshooting__sub-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-f8be-login-troubleshooting__text-content p {
    margin-bottom: 15px;
    color: var(--text-secondary-color);
}

.page-blog-f8be-login-troubleshooting__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary-color);
}

.page-blog-f8be-login-troubleshooting__list li {
    margin-bottom: 8px;
}

.page-blog-f8be-login-troubleshooting__btn-primary {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-f8be-login-troubleshooting__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-f8be-login-troubleshooting__btn-download {
    margin-top: 20px;
}

.page-blog-f8be-login-troubleshooting__faq-list {
    margin-top: 40px;
}

.page-blog-f8be-login-troubleshooting__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-f8be-login-troubleshooting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--gold-color);
    font-size: 1.15rem;
    list-style: none; /* For <details> summary */
}

.page-blog-f8be-login-troubleshooting__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-f8be-login-troubleshooting__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-blog-f8be-login-troubleshooting__faq-item[open] .page-blog-f8be-login-troubleshooting__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-f8be-login-troubleshooting__faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--text-secondary-color);
    font-size: 1rem;
    line-height: 1.7;
}

.page-blog-f8be-login-troubleshooting__faq-answer p {
    margin-bottom: 15px;
}

.page-blog-f8be-login-troubleshooting__faq-image {
    margin-top: 15px;
    border-radius: 8px;
}

.page-blog-f8be-login-troubleshooting__conclusion {
    text-align: center;
    padding-top: 40px;
}

.page-blog-f8be-login-troubleshooting__btn-final-cta {
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-blog-f8be-login-troubleshooting__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-blog-f8be-login-troubleshooting__content-block--reverse {
        flex-direction: column;
    }
    .page-blog-f8be-login-troubleshooting__text-content {
        order: 2;
    }
    .page-blog-f8be-login-troubleshooting__image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
    .page-blog-f8be-login-troubleshooting__hero-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .page-blog-f8be-login-troubleshooting {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-f8be-login-troubleshooting__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }
    .page-blog-f8be-login-troubleshooting__main-title {
        font-size: 2rem;
    }
    .page-blog-f8be-login-troubleshooting__description {
        font-size: 1rem;
    }
    .page-blog-f8be-login-troubleshooting__section-title {
        font-size: 1.8rem;
    }
    .page-blog-f8be-login-troubleshooting__section-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .page-blog-f8be-login-troubleshooting__section {
        padding: 40px 0;
    }
    .page-blog-f8be-login-troubleshooting__container {
        padding: 0 15px;
    }

    /* Mobile image responsiveness */
    .page-blog-f8be-login-troubleshooting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-f8be-login-troubleshooting__image-wrapper,
    .page-blog-f8be-login-troubleshooting__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Mobile button responsiveness */
    .page-blog-f8be-login-troubleshooting__btn-primary,
    .page-blog-f8be-login-troubleshooting__btn-download,
    .page-blog-f8be-login-troubleshooting__btn-final-cta,
    .page-blog-f8be-login-troubleshooting a[class*="button"],
    .page-blog-f8be-login-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;
        text-align: center;
    }
    .page-blog-f8be-login-troubleshooting__cta-buttons,
    .page-blog-f8be-login-troubleshooting__button-group,
    .page-blog-f8be-login-troubleshooting__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-blog-f8be-login-troubleshooting__cta-buttons {
        display: flex;
        flex-direction: column;
    }

    .page-blog-f8be-login-troubleshooting__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-f8be-login-troubleshooting__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-blog-f8be-login-troubleshooting__main-title {
        font-size: 1.8rem;
    }
    .page-blog-f8be-login-troubleshooting__section-title {
        font-size: 1.6rem;
    }
    .page-blog-f8be-login-troubleshooting__sub-title {
        font-size: 1.5rem;
    }
    .page-blog-f8be-login-troubleshooting__btn-primary {
        padding: 12px 20px;
        font-size: 1rem;
    }
}