/* style/registration-login-troubleshooting.css */
.page-registration-login-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark grey for general text on light background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-registration-login-troubleshooting__hero-section {
    background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
    color: #FFFFFF; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
}

.page-registration-login-troubleshooting__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00; /* Golden yellow for main title */
    font-weight: bold;
}

.page-registration-login-troubleshooting__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-registration-login-troubleshooting__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-registration-login-troubleshooting__button--primary {
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue text */
    border: 2px solid #FFCC00;
}

.page-registration-login-troubleshooting__button--primary:hover {
    background-color: #e6b800; /* Darker yellow on hover */
    border-color: #e6b800;
}

.page-registration-login-troubleshooting__button--secondary {
    background-color: transparent;
    color: #FFCC00; /* Golden yellow text */
    border: 2px solid #FFCC00;
    margin-left: 15px;
}

.page-registration-login-troubleshooting__button--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

/* Section Titles */
.page-registration-login-troubleshooting__section-title {
    font-size: 2.2em;
    color: #003366; /* Deep blue for section titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-registration-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;
}

/* Content Sections */
.page-registration-login-troubleshooting__content-section,
.page-registration-login-troubleshooting__solution-section,
.page-registration-login-troubleshooting__prevention-section,
.page-registration-login-troubleshooting__why-bong789,
.page-registration-login-troubleshooting__faq-section,
.page-registration-login-troubleshooting__cta-section {
    padding: 60px 0;
}

.page-registration-login-troubleshooting__content-section {
    background-color: #f8f8f8;
}

.page-registration-login-troubleshooting__text {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #333333;
}

/* Grid for common issues */
.page-registration-login-troubleshooting__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-login-troubleshooting__grid-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    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-registration-login-troubleshooting__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

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

/* Step-by-step Solution */
.page-registration-login-troubleshooting__solution-section {
    background-color: #FFFFFF;
}

.page-registration-login-troubleshooting__step-by-step {
    margin-top: 40px;
}

.page-registration-login-troubleshooting__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: #f0f5fa; /* Light blue background for steps */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-registration-login-troubleshooting__step-number {
    background-color: #003366; /* Deep blue */
    color: #FFCC00; /* Golden yellow text */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-registration-login-troubleshooting__step-content {
    flex-grow: 1;
}

.page-registration-login-troubleshooting__step-content .page-registration-login-troubleshooting__item-title {
    margin-top: 0;
    color: #003366;
}

.page-registration-login-troubleshooting__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.page-registration-login-troubleshooting__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #333333;
}

.page-registration-login-troubleshooting__list li::before {
    content: '•';
    color: #FFCC00; /* Golden yellow bullet */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-registration-login-troubleshooting__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-registration-login-troubleshooting__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Prevention Section */
.page-registration-login-troubleshooting__prevention-section {
    background-color: #f8f8f8;
}

.page-registration-login-troubleshooting__list--large-icon li {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-registration-login-troubleshooting__list--large-icon li::before {
    display: none;
}

.page-registration-login-troubleshooting__list-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1));
}

/* Why Bong789 Section */
.page-registration-login-troubleshooting__why-bong789 {
    background-color: #e0eaf4; /* Lighter blue */
    color: #333333;
}

/* FAQ Section */
.page-registration-login-troubleshooting__faq-section {
    background-color: #FFFFFF;
}

.page-registration-login-troubleshooting__faq-accordion {
    margin-top: 40px;
}

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

.page-registration-login-troubleshooting__faq-question {
    background-color: #f0f5fa; /* Light blue */
    color: #003366; /* Deep blue */
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.page-registration-login-troubleshooting__faq-question:hover {
    background-color: #e6edf5;
}

.page-registration-login-troubleshooting__faq-answer {
    padding: 0 25px;
    background-color: #FFFFFF;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-registration-login-troubleshooting__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px 20px;
}

.page-registration-login-troubleshooting__faq-answer p {
    margin: 0;
    color: #333333;
}

/* CTA Section */
.page-registration-login-troubleshooting__cta-section {
    background-color: #003366; /* Deep blue */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-registration-login-troubleshooting__cta-section .page-registration-login-troubleshooting__section-title {
    color: #FFCC00; /* Golden yellow */
}

.page-registration-login-troubleshooting__cta-section .page-registration-login-troubleshooting__text {
    color: #e0e0e0; /* Lighter grey for text */
    margin-bottom: 40px;
}

.page-registration-login-troubleshooting__cta-buttons .page-registration-login-troubleshooting__button {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-registration-login-troubleshooting__hero-title {
        font-size: 2.2em;
    }
    .page-registration-login-troubleshooting__section-title {
        font-size: 1.8em;
    }
    .page-registration-login-troubleshooting__grid {
        grid-template-columns: 1fr;
    }
    .page-registration-login-troubleshooting__step-item {
        flex-direction: column;
        text-align: center;
    }
    .page-registration-login-troubleshooting__step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-registration-login-troubleshooting__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-registration-login-troubleshooting__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-registration-login-troubleshooting__cta-buttons .page-registration-login-troubleshooting__button {
        margin: 10px 0;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-registration-login-troubleshooting__hero-title {
        font-size: 1.8em;
    }
    .page-registration-login-troubleshooting__hero-subtitle,
    .page-registration-login-troubleshooting__text {
        font-size: 1em;
    }
    .page-registration-login-troubleshooting__section-title {
        font-size: 1.5em;
    }
    .page-registration-login-troubleshooting__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}