.page-login-portal-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

.page-login-portal-troubleshooting__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-login-portal-troubleshooting__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    animation: page-login-portal-troubleshooting__pulse 3s infinite alternate;
}

.page-login-portal-troubleshooting__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 204, 0, 0.15);
    border-radius: 50%;
    animation: page-login-portal-troubleshooting__pulse 4s infinite alternate reverse;
}

@keyframes page-login-portal-troubleshooting__pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.page-login-portal-troubleshooting__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-login-portal-troubleshooting__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login-portal-troubleshooting__section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-login-portal-troubleshooting__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.page-login-portal-troubleshooting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

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

.page-login-portal-troubleshooting__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-login-portal-troubleshooting__grid-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login-portal-troubleshooting__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-login-portal-troubleshooting__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

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

.page-login-portal-troubleshooting__item-text {
    color: #666;
    font-size: 1em;
}

.page-login-portal-troubleshooting__solution-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-login-portal-troubleshooting__solution-list li {
    background-color: #fcfcfc;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFCC00;
}

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

.page-login-portal-troubleshooting__solution-list p {
    color: #444;
    margin-bottom: 15px;
}

.page-login-portal-troubleshooting__solution-list ul {
    list-style: disc inside;
    margin-left: 20px;
    color: #555;
    margin-bottom: 15px;
}

.page-login-portal-troubleshooting__solution-list li strong {
    color: #003366;
}

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

.page-login-portal-troubleshooting__security-list li {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #003366;
}

.page-login-portal-troubleshooting__security-list li .page-login-portal-troubleshooting__list-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-login-portal-troubleshooting__security-list li p {
    color: #555;
}

.page-login-portal-troubleshooting__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    margin-top: 15px;
}

.page-login-portal-troubleshooting__btn--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-login-portal-troubleshooting__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-login-portal-troubleshooting__btn--secondary {
    background-color: #003366;
    color: #fff;
    border: 1px solid #003366;
    margin-left: 15px;
}

.page-login-portal-troubleshooting__btn--secondary:hover {
    background-color: #001a33;
    transform: translateY(-2px);
}

.page-login-portal-troubleshooting__hero .page-login-portal-troubleshooting__btn {
    margin-top: 30px;
}

.page-login-portal-troubleshooting__text-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-login-portal-troubleshooting__text-link:hover {
    color: #FFCC00;
    text-decoration: none;
}

.page-login-portal-troubleshooting__cta-card {
    background-color: #003366;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-login-portal-troubleshooting__cta-card-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.page-login-portal-troubleshooting__cta-card-text {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0;
    color: #e0e0e0;
}

.page-login-portal-troubleshooting__cta-card .page-login-portal-troubleshooting__text-link {
    color: #FFCC00;
}

.page-login-portal-troubleshooting__cta-card .page-login-portal-troubleshooting__btn {
    margin-top: 0;
}

.page-login-portal-troubleshooting__platform-overview {
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
}

.page-login-portal-troubleshooting__platform-overview .page-login-portal-troubleshooting__section-title {
    color: #FFCC00;
}

.page-login-portal-troubleshooting__platform-overview .page-login-portal-troubleshooting__section-title::after {
    background-color: #fff;
}

.page-login-portal-troubleshooting__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.page-login-portal-troubleshooting__content-text h3 {
    color: #FFCC00;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-login-portal-troubleshooting__content-text p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-login-portal-troubleshooting__content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-login-portal-troubleshooting__faq-item {
    background-color: #f9f9f9;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #003366;
}

.page-login-portal-troubleshooting__faq-question {
    font-size: 1.4em;
    color: #003366;
    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.2em;
    color: #FFCC00;
    font-weight: bold;
}

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

.page-login-portal-troubleshooting__faq-answer {
    color: #555;
    font-size: 1.05em;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 10px;
}

.page-login-portal-troubleshooting__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding: 10px;
}

.page-login-portal-troubleshooting__cta-final {
    background-color: #FFCC00;
    color: #003366;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-login-portal-troubleshooting__cta-final-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-login-portal-troubleshooting__cta-final-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-login-portal-troubleshooting__cta-buttons .page-login-portal-troubleshooting__btn {
    margin: 0 10px;
    margin-top: 0; /* Override default button margin-top */
}

.page-login-portal-troubleshooting__cta-buttons .page-login-portal-troubleshooting__btn--primary {
    background-color: #003366;
    color: #FFCC00;
}

.page-login-portal-troubleshooting__cta-buttons .page-login-portal-troubleshooting__btn--primary:hover {
    background-color: #001a33;
    color: #fff;
}

.page-login-portal-troubleshooting__cta-buttons .page-login-portal-troubleshooting__btn--secondary {
    background-color: #fff;
    color: #003366;
    border: 2px solid #003366;
}

.page-login-portal-troubleshooting__cta-buttons .page-login-portal-troubleshooting__btn--secondary:hover {
    background-color: #e0e0e0;
    color: #001a33;
}

.page-login-portal-troubleshooting__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.page-login-portal-troubleshooting__floating-btn {
    display: flex;
    align-items: center;
    background-color: #FFCC00;
    color: #003366;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-login-portal-troubleshooting__floating-btn:hover {
    transform: translateY(-3px);
    background-color: #e6b800;
}

.page-login-portal-troubleshooting__floating-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-login-portal-troubleshooting__content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-login-portal-troubleshooting__content-image {
        order: -1; /* Image appears above text on mobile */
        margin-bottom: 30px;
    }
    .page-login-portal-troubleshooting__content-text h3 {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .page-login-portal-troubleshooting__hero {
        padding: 80px 0;
    }
    .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__grid {
        grid-template-columns: 1fr;
    }
    .page-login-portal-troubleshooting__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-login-portal-troubleshooting__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-login-portal-troubleshooting__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-login-portal-troubleshooting__cta-buttons .page-login-portal-troubleshooting__btn {
        margin: 10px 0;
    }
    .page-login-portal-troubleshooting__floating-btn {
        font-size: 0.9em;
        padding: 8px 15px;
    }
    .page-login-portal-troubleshooting__floating-icon {
        width: 25px;
        height: 25px;
    }
    .page-login-portal-troubleshooting__cta-final-title {
        font-size: 2em;
    }
    .page-login-portal-troubleshooting__cta-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .page-login-portal-troubleshooting__hero-title {
        font-size: 2em;
    }
    .page-login-portal-troubleshooting__section-title {
        font-size: 1.8em;
    }
    .page-login-portal-troubleshooting__list-title {
        font-size: 1.4em;
    }
    .page-login-portal-troubleshooting__cta-final-title {
        font-size: 1.8em;
    }
    .page-login-portal-troubleshooting__floating-btn span {
        display: none;
    }
    .page-login-portal-troubleshooting__floating-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    .page-login-portal-troubleshooting__floating-icon {
        margin-right: 0;
    }
}