/* style/resources-ta88-login-troubleshooting.css */
.page-resources-ta88-login-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-resources-ta88-login-troubleshooting__hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-resources-ta88-login-troubleshooting__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, rgba(139, 0, 0, 0.3) 70%, transparent 100%);
    animation: page-resources-ta88-login-troubleshooting__pulse 15s infinite ease-in-out;
    opacity: 0.5;
}

@keyframes page-resources-ta88-login-troubleshooting__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-resources-ta88-login-troubleshooting__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-resources-ta88-login-troubleshooting__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-resources-ta88-login-troubleshooting__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
}

.page-resources-ta88-login-troubleshooting__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-resources-ta88-login-troubleshooting__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-ta88-login-troubleshooting__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-ta88-login-troubleshooting__btn--secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-resources-ta88-login-troubleshooting__btn--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-resources-ta88-login-troubleshooting__btn--tertiary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-resources-ta88-login-troubleshooting__btn--tertiary:hover {
    background-color: #e0e0e0;
}

.page-resources-ta88-login-troubleshooting__content-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.page-resources-ta88-login-troubleshooting__article-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-ta88-login-troubleshooting__heading {
    font-size: 2em;
    color: #8B0000;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-ta88-login-troubleshooting__sub-heading {
    font-size: 1.5em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-ta88-login-troubleshooting__mini-heading {
    font-size: 1.2em;
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-ta88-login-troubleshooting__list,
.page-resources-ta88-login-troubleshooting__ordered-list {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-resources-ta88-login-troubleshooting__list li,
.page-resources-ta88-login-troubleshooting__ordered-list li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.page-resources-ta88-login-troubleshooting__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-ta88-login-troubleshooting__faq-container {
    margin-top: 30px;
}

.page-resources-ta88-login-troubleshooting__faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-ta88-login-troubleshooting__faq-question {
    background-color: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #8B0000;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-resources-ta88-login-troubleshooting__faq-question:hover {
    background-color: #eee;
}

.page-resources-ta88-login-troubleshooting__faq-question.active {
    background-color: #FFD700;
    color: #8B0000;
}

.page-resources-ta88-login-troubleshooting__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fff;
}

.page-resources-ta88-login-troubleshooting__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 20px;
}

.page-resources-ta88-login-troubleshooting__faq-answer p {
    margin-bottom: 0;
}

.page-resources-ta88-login-troubleshooting__cta-group {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-resources-ta88-login-troubleshooting__cta-group .page-resources-ta88-login-troubleshooting__btn {
    margin: 0 10px;
}

.page-resources-ta88-login-troubleshooting__back-link {
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-ta88-login-troubleshooting__title {
        font-size: 2.2em;
    }

    .page-resources-ta88-login-troubleshooting__sub-heading {
        font-size: 1.3em;
    }

    .page-resources-ta88-login-troubleshooting__hero {
        padding: 80px 15px;
    }

    .page-resources-ta88-login-troubleshooting__article-content {
        padding: 25px;
    }

    .page-resources-ta88-login-troubleshooting__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-resources-ta88-login-troubleshooting__cta-group .page-resources-ta88-login-troubleshooting__btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-ta88-login-troubleshooting__title {
        font-size: 1.8em;
    }

    .page-resources-ta88-login-troubleshooting__subtitle {
        font-size: 1em;
    }

    .page-resources-ta88-login-troubleshooting__hero {
        padding: 60px 10px;
    }

    .page-resources-ta88-login-troubleshooting__heading {
        font-size: 1.6em;
    }

    .page-resources-ta88-login-troubleshooting__sub-heading {
        font-size: 1.2em;
    }

    .page-resources-ta88-login-troubleshooting__article-content {
        padding: 15px;
    }
}