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

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

.page-registration-guide-login-troubleshooting__hero-section {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-guide-login-troubleshooting__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, rgba(0, 51, 102, 0) 70%);
    animation: page-registration-guide-login-troubleshooting__pulse 15s infinite ease-in-out;
}

@keyframes page-registration-guide-login-troubleshooting__pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.9; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

.page-registration-guide-login-troubleshooting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Golden yellow for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-registration-guide-login-troubleshooting__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-registration-guide-login-troubleshooting__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFCC00;
    position: relative;
    z-index: 1;
}

.page-registration-guide-login-troubleshooting__cta-button:hover {
    background-color: #e6b800; /* Slightly darker yellow on hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-login-troubleshooting__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-registration-guide-login-troubleshooting__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-registration-guide-login-troubleshooting__content-section,
.page-registration-guide-login-troubleshooting__faq-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-registration-guide-login-troubleshooting__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-registration-guide-login-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-registration-guide-login-troubleshooting__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

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

.page-registration-guide-login-troubleshooting__issue-card {
    background-color: #f0f8ff; /* Light blue background */
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-guide-login-troubleshooting__issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-registration-guide-login-troubleshooting__issue-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-registration-guide-login-troubleshooting__issue-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

.page-registration-guide-login-troubleshooting__issue-description {
    font-size: 1em;
    color: #555;
}

.page-registration-guide-login-troubleshooting__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-registration-guide-login-troubleshooting__step-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-registration-guide-login-troubleshooting__step-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-login-troubleshooting__step-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-registration-guide-login-troubleshooting__step-item p {
    font-size: 1.05em;
    color: #555;
    text-align: justify;
}

.page-registration-guide-login-troubleshooting__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-login-troubleshooting__text-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-registration-guide-login-troubleshooting__text-link:hover {
    color: #FFCC00;
}

.page-registration-guide-login-troubleshooting__prevention-list {
    list-style: disc inside;
    margin-top: 30px;
    padding-left: 20px;
}

.page-registration-guide-login-troubleshooting__prevention-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-registration-guide-login-troubleshooting__prevention-list li strong {
    color: #003366;
}

.page-registration-guide-login-troubleshooting__prevention-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-registration-guide-login-troubleshooting__faq-section {
    background-color: #f0f8ff;
}

.page-registration-guide-login-troubleshooting__faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-registration-guide-login-troubleshooting__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-registration-guide-login-troubleshooting__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-registration-guide-login-troubleshooting__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-registration-guide-login-troubleshooting__faq-answer {
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-registration-guide-login-troubleshooting__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-registration-guide-login-troubleshooting__hero-title {
        font-size: 2.5em;
    }
    .page-registration-guide-login-troubleshooting__hero-subtitle {
        font-size: 1.1em;
    }
    .page-registration-guide-login-troubleshooting__section-title {
        font-size: 2em;
    }
    .page-registration-guide-login-troubleshooting__issue-grid {
        grid-template-columns: 1fr;
    }
    .page-registration-guide-login-troubleshooting__step-item {
        padding: 20px;
    }
    .page-registration-guide-login-troubleshooting__step-title {
        font-size: 1.4em;
    }
    .page-registration-guide-login-troubleshooting__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-registration-guide-login-troubleshooting__hero-title {
        font-size: 2em;
    }
    .page-registration-guide-login-troubleshooting__hero-subtitle {
        font-size: 1em;
    }
    .page-registration-guide-login-troubleshooting__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-registration-guide-login-troubleshooting__section-title {
        font-size: 1.8em;
    }
    .page-registration-guide-login-troubleshooting__paragraph,
    .page-registration-guide-login-troubleshooting__prevention-list li,
    .page-registration-guide-login-troubleshooting__faq-answer {
        font-size: 0.95em;
    }
}