/* style/register-login-new-user-registration-steps.css */

/* Base styles for the page */
.page-register-login-new-user-registration-steps {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-register-login-new-user-registration-steps strong {
    color: #FFD700; /* Accent color for emphasis */
}

.page-register-login-new-user-registration-steps__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-register-login-new-user-registration-steps__container--center {
    text-align: center;
}

.page-register-login-new-user-registration-steps__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a3f4a 100%); /* Subtle gradient for hero */
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid #FFD700; /* Accent border */
}

.page-register-login-new-user-registration-steps__title {
    font-size: 3.2em;
    color: #FFD700; /* Accent color for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register-login-new-user-registration-steps__subtitle {
    font-size: 1.3em;
    color: #FFFFFF;
    max-width: 900px;
    margin: 0 auto;
}

.page-register-login-new-user-registration-steps__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-register-login-new-user-registration-steps__section:last-of-type {
    border-bottom: none;
}

.page-register-login-new-user-registration-steps__section--alt-bg {
    background-color: #282f3a; /* Slightly lighter dark background for contrast */
}

.page-register-login-new-user-registration-steps__section--cta {
    background-color: #FFD700; /* Accent background for CTA section */
    color: #1A202C; /* Dark text on accent background */
    padding: 80px 0;
}

.page-register-login-new-user-registration-steps__section--cta .page-register-login-new-user-registration-steps__section-title,
.page-register-login-new-user-registration-steps__section--cta .page-register-login-new-user-registration-steps__cta-text {
    color: #1A202C; /* Ensure dark text on accent background */
}

.page-register-login-new-user-registration-steps__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-register-login-new-user-registration-steps__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-register-login-new-user-registration-steps__step-title {
    font-size: 1.8em;
    color: #FFFFFF; /* White for step titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-register-login-new-user-registration-steps__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-register-login-new-user-registration-steps__list--numbered {
    list-style-type: decimal;
}

.page-register-login-new-user-registration-steps__list li {
    margin-bottom: 10px;
}

.page-register-login-new-user-registration-steps__image-figure {
    margin: 40px auto;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-register-login-new-user-registration-steps__image {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-register-login-new-user-registration-steps__image-caption {
    font-size: 0.9em;
    color: #BBBBBB;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
}

.page-register-login-new-user-registration-steps__button-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-register-login-new-user-registration-steps__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin: 10px;
    white-space: nowrap;
}

.page-register-login-new-user-registration-steps__btn--primary {
    background-color: #FFD700; /* Accent color background */
    color: #1A202C; /* Dark text on accent background */
    border: 2px solid #FFD700;
}

.page-register-login-new-user-registration-steps__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-register-login-new-user-registration-steps__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color text */
    border: 2px solid #FFD700;
}

.page-register-login-new-user-registration-steps__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-register-login-new-user-registration-steps__btn--large {
    font-size: 1.2em;
    padding: 18px 35px;
}

.page-register-login-new-user-registration-steps__faq {
    margin-top: 30px;
}

.page-register-login-new-user-registration-steps__faq-item {
    background-color: #1A202C;
    border: 1px solid #3a3f4a;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-register-login-new-user-registration-steps__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-register-login-new-user-registration-steps__faq-answer {
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-register-login-new-user-registration-steps__cta-text {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #1A202C;
}

.page-register-login-new-user-registration-steps__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-register-login-new-user-registration-steps__title {
        font-size: 2.5em;
    }

    .page-register-login-new-user-registration-steps__subtitle {
        font-size: 1.1em;
    }

    .page-register-login-new-user-registration-steps__section-title {
        font-size: 2em;
    }

    .page-register-login-new-user-registration-steps__step-title {
        font-size: 1.5em;
    }

    .page-register-login-new-user-registration-steps__btn--large {
        font-size: 1em;
        padding: 15px 25px;
    }

    .page-register-login-new-user-registration-steps__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-register-login-new-user-registration-steps__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-register-login-new-user-registration-steps__title {
        font-size: 2em;
    }

    .page-register-login-new-user-registration-steps__section-title {
        font-size: 1.8em;
    }

    .page-register-login-new-user-registration-steps__step-title {
        font-size: 1.3em;
    }

    .page-register-login-new-user-registration-steps__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}