/* style/faq-account-registration.css */
.page-faq-account-registration {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #0A2342;
    line-height: 1.6;
}

.page-faq-account-registration__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-faq-account-registration__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-faq-account-registration__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[IMAGE:hero_main]'); /* Dynamic background image */
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.page-faq-account-registration__hero > * {
    position: relative;
    z-index: 1;
}

.page-faq-account-registration__title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-account-registration__subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-account-registration__button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-faq-account-registration__button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-faq-account-registration__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-faq-account-registration__section:last-of-type {
    border-bottom: none;
}

.page-faq-account-registration__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-faq-account-registration__sub-section-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-faq-account-registration__section p {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-faq-account-registration__section p strong {
    color: #FFD700;
}

.page-faq-account-registration__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-faq-account-registration__list li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.page-faq-account-registration__list li strong {
    color: #FFD700;
}

.page-faq-account-registration__list ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-top: 10px;
}

.page-faq-account-registration__list ul {
    list-style-type: circle;
    margin-left: 20px;
    margin-top: 10px;
}

.page-faq-account-registration__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-faq-account-registration__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-faq-account-registration__image:hover {
    transform: scale(1.02);
}

.page-faq-account-registration__call-to-action-text {
    text-align: center;
    font-size: 1.2em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-faq-account-registration__action-buttons {
    text-align: center;
    margin-top: 50px;
}

.page-faq-account-registration__action-buttons .page-faq-account-registration__button {
    margin: 0 15px;
}

.page-faq-account-registration__button--primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-faq-account-registration__button--primary:hover {
    background-color: #e6c200;
}

.page-faq-account-registration__button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-faq-account-registration__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-faq-account-registration__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq-account-registration__title {
        font-size: 2.5em;
    }

    .page-faq-account-registration__subtitle {
        font-size: 1.1em;
    }

    .page-faq-account-registration__section-title {
        font-size: 2em;
    }

    .page-faq-account-registration__sub-section-title {
        font-size: 1.5em;
    }

    .page-faq-account-registration__list,
    .page-faq-account-registration__section p {
        font-size: 1em;
    }

    .page-faq-account-registration__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-faq-account-registration__action-buttons .page-faq-account-registration__button {
        display: block;
        margin: 15px auto;
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-faq-account-registration__title {
        font-size: 2em;
    }

    .page-faq-account-registration__section-title {
        font-size: 1.8em;
    }

    .page-faq-account-registration__sub-section-title {
        font-size: 1.3em;
    }

    .page-faq-account-registration__hero {
        padding: 60px 0;
    }

    .page-faq-account-registration__section {
        padding: 40px 0;
    }
}