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

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

/* Hero Section */
.page-register-login-troubleshooting__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-troubleshooting__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    animation: floatEffect 10s infinite ease-in-out;
}

.page-register-login-troubleshooting__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 204, 0, 0.15);
    border-radius: 50%;
    animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0); }
    50% { transform: translate(10px, 20px); }
    100% { transform: translate(0, 0); }
}

.page-register-login-troubleshooting__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* Accent color for title */
}

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

.page-register-login-troubleshooting__hero-buttons .page-register-login-troubleshooting__btn {
    margin: 0 10px;
}

/* Buttons */
.page-register-login-troubleshooting__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-register-login-troubleshooting__btn--primary {
    background-color: #FFCC00; /* Accent color */
    color: #003366; /* Dark blue for text */
}

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

.page-register-login-troubleshooting__btn--secondary {
    background-color: #003366; /* Main color */
    color: #ffffff;
    border: 2px solid #FFCC00;
}

.page-register-login-troubleshooting__btn--secondary:hover {
    background-color: #004488;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-register-login-troubleshooting__btn--link {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    padding: 10px 20px;
    font-size: 1em;
}

.page-register-login-troubleshooting__btn--link:hover {
    background-color: #003366;
    color: #FFCC00;
    transform: translateY(-2px);
}

/* FAQ Section */
.page-register-login-troubleshooting__faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.page-register-login-troubleshooting__faq-category {
    margin-bottom: 50px;
}

.page-register-login-troubleshooting__category-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #FFCC00;
    padding-bottom: 15px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion */
.page-register-login-troubleshooting__accordion {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.page-register-login-troubleshooting__accordion-item {
    border-bottom: 1px solid #eee;
}

.page-register-login-troubleshooting__accordion-item:last-child {
    border-bottom: none;
}

.page-register-login-troubleshooting__accordion-header {
    width: 100%;
    background-color: #f0f5f9; /* Light background for header */
    color: #003366;
    padding: 20px 30px;
    text-align: left;
    font-size: 1.25em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-register-login-troubleshooting__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: normal;
    transition: transform 0.3s ease;
}

.page-register-login-troubleshooting__accordion-header.active {
    background-color: #e0eaf1;
}

.page-register-login-troubleshooting__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-register-login-troubleshooting__accordion-content {
    padding: 0 30px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-register-login-troubleshooting__accordion-content.active {
    max-height: 1000px; /* Adjust as needed for content length */
    padding: 20px 30px;
}

.page-register-login-troubleshooting__accordion-content p {
    margin-bottom: 15px;
    color: #444;
}

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

/* Call to Action Section */
.page-register-login-troubleshooting__cta-section {
    background-color: #003366;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
}

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

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

.page-register-login-troubleshooting__cta-buttons .page-register-login-troubleshooting__btn {
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-register-login-troubleshooting__hero-title {
        font-size: 2.5em;
    }

    .page-register-login-troubleshooting__hero-subtitle {
        font-size: 1em;
    }

    .page-register-login-troubleshooting__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-register-login-troubleshooting__hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-register-login-troubleshooting__hero-buttons .page-register-login-troubleshooting__btn {
        margin: 0;
    }

    .page-register-login-troubleshooting__section-title {
        font-size: 2em;
    }

    .page-register-login-troubleshooting__category-title {
        font-size: 1.7em;
    }

    .page-register-login-troubleshooting__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-register-login-troubleshooting__accordion-content {
        padding: 15px 20px;
    }

    .page-register-login-troubleshooting__cta-title {
        font-size: 2em;
    }

    .page-register-login-troubleshooting__cta-description {
        font-size: 1em;
    }

    .page-register-login-troubleshooting__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-register-login-troubleshooting__cta-buttons .page-register-login-troubleshooting__btn {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .page-register-login-troubleshooting__hero-title {
        font-size: 2em;
    }

    .page-register-login-troubleshooting__section-title {
        font-size: 1.8em;
    }

    .page-register-login-troubleshooting__category-title {
        font-size: 1.5em;
    }

    .page-register-login-troubleshooting__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-register-login-troubleshooting__accordion-content {
        padding: 12px 15px;
    }
}