/* style/register-login-troubleshooting.css */
.page-register-login-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

.page-register-login-troubleshooting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-register-login-troubleshooting__hero {
    background: linear-gradient(135deg, #0A192F, #1e3a62);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-troubleshooting__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-register-login-troubleshooting__subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-register-login-troubleshooting__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-register-login-troubleshooting__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    margin-right: 15px;
}

.page-register-login-troubleshooting__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-register-login-troubleshooting__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-register-login-troubleshooting__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-register-login-troubleshooting__btn--tertiary {
    background-color: #007bff;
    color: #FFFFFF;
    border: 2px solid #007bff;
}

.page-register-login-troubleshooting__btn--tertiary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
}

.page-register-login-troubleshooting__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-register-login-troubleshooting__section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-register-login-troubleshooting__section:nth-of-type(even) {
    background-color: #1a2a47;
}

.page-register-login-troubleshooting__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-register-login-troubleshooting__section-description {
    font-size: 1.2em;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-register-login-troubleshooting__issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-register-login-troubleshooting__issue-card {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #f5e6d0;
}

.page-register-login-troubleshooting__issue-card:hover {
    transform: translateY(-10px);
}

.page-register-login-troubleshooting__issue-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register-login-troubleshooting__issue-text {
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-register-login-troubleshooting__solution-heading {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-register-login-troubleshooting__solution-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-register-login-troubleshooting__solution-list li {
    margin-bottom: 10px;
}

.page-register-login-troubleshooting__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-register-login-troubleshooting__pro-tips-image, .page-register-login-troubleshooting__contact-image {
    max-width: 70%;
    height: auto;
    margin: 40px auto 0;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-register-login-troubleshooting__tips-list {
    list-style-type: disc;
    padding-left: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-register-login-troubleshooting__tips-list li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-register-login-troubleshooting__contact-support {
    text-align: center;
}

.page-register-login-troubleshooting__contact-text {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-register-login-troubleshooting__cta {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
    color: #0A192F;
}

.page-register-login-troubleshooting__cta-title {
    font-size: 2.8em;
    color: #0A192F;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-register-login-troubleshooting__cta-description {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 40px;
}

.page-register-login-troubleshooting__cta-buttons {
    margin-bottom: 30px;
}

.page-register-login-troubleshooting__cta-buttons .page-register-login-troubleshooting__btn--primary {
    margin-right: 20px;
}

.page-register-login-troubleshooting__cta-buttons .page-register-login-troubleshooting__btn--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border-color: #0A192F;
}

.page-register-login-troubleshooting__cta-buttons .page-register-login-troubleshooting__btn--secondary:hover {
    background-color: #2a3e5c;
    border-color: #2a3e5c;
    color: #FFD700;
}

.page-register-login-troubleshooting__cta-download {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
}

.page-register-login-troubleshooting__cta .page-register-login-troubleshooting__btn--tertiary {
    background-color: #0A192F;
    color: #FFD700;
    border-color: #0A192F;
}

.page-register-login-troubleshooting__cta .page-register-login-troubleshooting__btn--tertiary:hover {
    background-color: #2a3e5c;
    border-color: #2a3e5c;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-register-login-troubleshooting__title {
        font-size: 2.8em;
    }
    .page-register-login-troubleshooting__subtitle {
        font-size: 1.3em;
    }
    .page-register-login-troubleshooting__section-title {
        font-size: 2.2em;
    }
    .page-register-login-troubleshooting__cta-title {
        font-size: 2.2em;
    }
    .page-register-login-troubleshooting__issue-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-register-login-troubleshooting__hero {
        padding: 80px 0 40px;
    }
    .page-register-login-troubleshooting__title {
        font-size: 2.2em;
    }
    .page-register-login-troubleshooting__subtitle {
        font-size: 1.1em;
    }
    .page-register-login-troubleshooting__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register-login-troubleshooting__btn--primary {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-register-login-troubleshooting__btn--secondary {
        margin-bottom: 15px;
    }
    .page-register-login-troubleshooting__section {
        padding: 60px 0;
    }
    .page-register-login-troubleshooting__section-title {
        font-size: 1.8em;
    }
    .page-register-login-troubleshooting__section-description {
        font-size: 1em;
    }
    .page-register-login-troubleshooting__issue-title {
        font-size: 1.5em;
    }
    .page-register-login-troubleshooting__solution-heading {
        font-size: 1.2em;
    }
    .page-register-login-troubleshooting__cta-title {
        font-size: 1.8em;
    }
    .page-register-login-troubleshooting__cta-description {
        font-size: 1.1em;
    }
    .page-register-login-troubleshooting__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-register-login-troubleshooting__cta-buttons .page-register-login-troubleshooting__btn--primary,
    .page-register-login-troubleshooting__cta-buttons .page-register-login-troubleshooting__btn--secondary {
        width: 80%;
        max-width: 300px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-register-login-troubleshooting__cta .page-register-login-troubleshooting__btn--tertiary {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-register-login-troubleshooting__title {
        font-size: 1.8em;
    }
    .page-register-login-troubleshooting__subtitle {
        font-size: 0.9em;
    }
    .page-register-login-troubleshooting__section-title {
        font-size: 1.5em;
    }
    .page-register-login-troubleshooting__issue-title {
        font-size: 1.3em;
    }
    .page-register-login-troubleshooting__hero-image,
    .page-register-login-troubleshooting__pro-tips-image,
    .page-register-login-troubleshooting__contact-image {
        max-width: 95%;
    }
}