/* style/login-portal-troubleshooting.css */
.page-login-portal-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A2239; /* Main dark background */
    line-height: 1.6;
}

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

.page-login-portal-troubleshooting__hero {
    background: linear-gradient(135deg, #0A2239 0%, #1A3E5C 100%); /* Dark blue gradient */
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-login-portal-troubleshooting__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-login-portal-troubleshooting__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login-portal-troubleshooting__hero-subtitle {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-login-portal-troubleshooting__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    filter: grayscale(100%);
}

.page-login-portal-troubleshooting__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-login-portal-troubleshooting__cta-button {
    display: inline-block;
    background-color: #DC143C; /* Red for CTA */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-login-portal-troubleshooting__cta-button:hover {
    background-color: #A00F2B; /* Darker red on hover */
    transform: translateY(-3px);
}

.page-login-portal-troubleshooting__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-login-portal-troubleshooting__section:last-of-type {
    border-bottom: none;
}

.page-login-portal-troubleshooting__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-login-portal-troubleshooting__section-description {
    font-size: 1.1em;
    color: #CCCCCC;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

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

.page-login-portal-troubleshooting__issue-card {
    background-color: #1A3E5C; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-login-portal-troubleshooting__issue-card:hover {
    transform: translateY(-5px);
    background-color: #2A4F70;
}

.page-login-portal-troubleshooting__issue-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-login-portal-troubleshooting__issue-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-login-portal-troubleshooting__issue-card-text {
    font-size: 0.95em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-login-portal-troubleshooting__solution-list {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #B0B0B0;
    font-size: 0.9em;
}

.page-login-portal-troubleshooting__solution-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.page-login-portal-troubleshooting__solution-list li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-login-portal-troubleshooting__step-by-step .page-login-portal-troubleshooting__section-title {
    color: #FFD700;
}

.page-login-portal-troubleshooting__steps-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-login-portal-troubleshooting__step-card {
    background-color: #1A3E5C;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-login-portal-troubleshooting__step-number {
    background-color: #FFD700;
    color: #0A2239;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-login-portal-troubleshooting__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-login-portal-troubleshooting__step-text {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: left;
}

.page-login-portal-troubleshooting__sub-list {
    list-style: disc;
    padding-left: 25px;
    text-align: left;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.page-login-portal-troubleshooting__sub-list li {
    margin-bottom: 5px;
}

.page-login-portal-troubleshooting__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    filter: brightness(0.9);
}

.page-login-portal-troubleshooting__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-login-portal-troubleshooting__tips-security .page-login-portal-troubleshooting__section-title {
    color: #FFD700;
}

.page-login-portal-troubleshooting__tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-login-portal-troubleshooting__tips-list li {
    background-color: #1A3E5C;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 45px;
    font-size: 1em;
    color: #E0E0E0;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-login-portal-troubleshooting__tips-list li::before {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 15px;
    top: 25px;
    font-size: 1.2em;
}

.page-login-portal-troubleshooting__cta-final {
    background-color: #0A2239;
    padding: 80px 0;
    text-align: center;
}

.page-login-portal-troubleshooting__cta-content {
    max-width: 900px;
}

.page-login-portal-troubleshooting__cta-final .page-login-portal-troubleshooting__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-login-portal-troubleshooting__cta-final .page-login-portal-troubleshooting__section-description {
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-login-portal-troubleshooting__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-login-portal-troubleshooting__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
}

.page-login-portal-troubleshooting__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
}

.page-login-portal-troubleshooting__faq .page-login-portal-troubleshooting__section-title {
    color: #FFD700;
}

.page-login-portal-troubleshooting__faq-item {
    background-color: #1A3E5C;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-login-portal-troubleshooting__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-login-portal-troubleshooting__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-login-portal-troubleshooting__faq-item.active .page-login-portal-troubleshooting__faq-question::after {
    content: '-';
}

.page-login-portal-troubleshooting__faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-login-portal-troubleshooting__faq-item.active .page-login-portal-troubleshooting__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    opacity: 1;
    padding-top: 15px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-login-portal-troubleshooting__steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-login-portal-troubleshooting__hero-title {
        font-size: 4em;
    }
    .page-login-portal-troubleshooting__section-title {
        font-size: 3em;
    }
}

@media (min-width: 1024px) {
    .page-login-portal-troubleshooting__steps-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .page-login-portal-troubleshooting__step-card {
        text-align: left;
        align-items: flex-start;
    }
    .page-login-portal-troubleshooting__step-image {
        order: -1; /* Image above text on larger screens */
        margin-bottom: 20px;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .page-login-portal-troubleshooting__hero {
        padding: 60px 15px;
    }
    .page-login-portal-troubleshooting__hero-title {
        font-size: 2.5em;
    }
    .page-login-portal-troubleshooting__hero-subtitle {
        font-size: 1em;
    }
    .page-login-portal-troubleshooting__section-title {
        font-size: 2em;
    }
    .page-login-portal-troubleshooting__section-description {
        font-size: 0.95em;
    }
    .page-login-portal-troubleshooting__issue-card, .page-login-portal-troubleshooting__step-card, .page-login-portal-troubleshooting__faq-item {
        padding: 20px;
    }
    .page-login-portal-troubleshooting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-login-portal-troubleshooting__tips-list li {
        padding-left: 35px;
    }
    .page-login-portal-troubleshooting__tips-list li::before {
        left: 10px;
    }
}