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

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

.page-register-login-login-faq__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-login-faq__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-register-login-login-faq__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    transform: rotate(-45deg);
}

.page-register-login-login-faq__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-login-faq__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-register-login-login-faq__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-register-login-login-faq__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-register-login-login-faq__btn--primary {
    background-color: #ffc107;
    color: #000; /* Adjusted for WCAG AA contrast on #ffc107 */
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

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

.page-register-login-login-faq__btn--secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

.page-register-login-login-faq__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.page-register-login-login-faq__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

.page-register-login-login-faq__content {
    padding: 60px 0;
}

.page-register-login-login-faq__intro-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    text-align: justify;
    color: #555;
}

.page-register-login-login-faq__section-heading {
    font-size: 2em;
    color: #007bff;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 10px;
}

.page-register-login-login-faq__faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-register-login-login-faq__faq-question {
    font-size: 1.4em;
    color: #007bff;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e9f5ff; /* Light blue background for contrast */
    border-bottom: 1px solid #d1e7ff;
}

.page-register-login-login-faq__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-register-login-login-faq__faq-answer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: none;
    background-color: #fdfdfd;
}

.page-register-login-login-faq__faq-answer p {
    margin-bottom: 15px;
    color: #444; /* Dark text on light background */
    text-align: justify;
}

.page-register-login-login-faq__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #444; /* Dark text on light background */
}

.page-register-login-login-faq__list--ordered {
    list-style: decimal;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #444; /* Dark text on light background */
}

.page-register-login-login-faq__list li,
.page-register-login-login-faq__list--ordered li {
    margin-bottom: 8px;
}

.page-register-login-login-faq__keyword {
    font-weight: bold;
    color: #0056b3; /* Darker blue for emphasis on light background */
}

.page-register-login-login-faq__text-link {
    color: #007bff;
    text-decoration: underline;
}

.page-register-login-login-faq__text-link:hover {
    color: #0056b3;
    text-decoration: none;
}

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

.page-register-login-login-faq__image--small {
    max-width: 60%;
}

.page-register-login-login-faq__image--large {
    max-width: 80%;
}

.page-register-login-login-faq__cta-buttons {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

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

    .page-register-login-login-faq__subtitle {
        font-size: 1.1em;
    }

    .page-register-login-login-faq__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-register-login-login-faq__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-register-login-login-faq__section-heading {
        font-size: 1.7em;
    }

    .page-register-login-login-faq__faq-question {
        font-size: 1.2em;
    }

    .page-register-login-login-faq__image--small {
        max-width: 80%;
    }

    .page-register-login-login-faq__image--large {
        max-width: 95%;
    }

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

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

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

    .page-register-login-login-faq__btn {
        width: 90%;
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-register-login-login-faq__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-register-login-login-faq__section-heading {
        font-size: 1.5em;
    }

    .page-register-login-login-faq__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-register-login-login-faq__faq-answer {
        padding: 15px;
    }
}

/* Ensure color contrast for accessibility */
.page-register-login-login-faq p, .page-register-login-login-faq li {
    color: #333; /* Dark text on light background */
}

.page-register-login-login-faq__hero p {
    color: #e0e0e0; /* Light text on dark blue background */
}

.page-register-login-login-faq__btn--primary {
    color: #000; /* Dark text on yellow button */
}

.page-register-login-login-faq__btn--secondary {
    color: #fff; /* Light text on transparent button with white border */
}

.page-register-login-login-faq__text-link {
    color: #007bff; /* Blue link on light background */
}

.page-register-login-login-faq__keyword {
    color: #0056b3; /* Darker blue for emphasis on light background */
}