/* style/registration-login-step-by-step.css */
.page-registration-login-step-by-step {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333; /* Default text color, ensures contrast on light backgrounds */
}

/* General container for content */
.page-registration-login-step-by-step__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section styling */
.page-registration-login-step-by-step__section {
    padding: 60px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-registration-login-step-by-step__section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-registration-login-step-by-step__section:nth-of-type(odd) {
    background-color: #f9f9f9; /* Light background for contrast */
}

.page-registration-login-step-by-step__section-title {
    font-size: 2.5em;
    color: #003366; /* Primary color for titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-registration-login-step-by-step__section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-registration-login-step-by-step__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Gradient with primary color */
    color: #ffffff; /* White text on dark background */
    padding: 100px 0;
    text-align: center;
}

.page-registration-login-step-by-step__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFCC00; /* Secondary color for main title */
}

.page-registration-login-step-by-step__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-registration-login-step-by-step__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-registration-login-step-by-step__btn--primary {
    background-color: #FFCC00; /* Secondary color for primary action */
    color: #003366; /* Primary color for text on secondary background */
}

.page-registration-login-step-by-step__btn--primary:hover {
    background-color: #e6b800; /* Slightly darker yellow on hover */
    color: #002244;
}

.page-registration-login-step-by-step__btn--secondary {
    background-color: #003366; /* Primary color for secondary action */
    color: #FFCC00; /* Secondary color for text on primary background */
    border: 2px solid #FFCC00;
}

.page-registration-login-step-by-step__btn--secondary:hover {
    background-color: #002244;
    color: #ffe066;
    border-color: #ffe066;
}

.page-registration-login-step-by-step__btn--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-registration-login-step-by-step__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Why Register Section */
.page-registration-login-step-by-step__why-register {
    background-color: #ffffff;
}

.page-registration-login-step-by-step__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-login-step-by-step__feature-item {
    background-color: #f0f8ff; /* Light blue background for feature items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-login-step-by-step__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-registration-login-step-by-step__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-registration-login-step-by-step__feature-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-registration-login-step-by-step__feature-item p {
    color: #666;
    font-size: 1em;
}

.page-registration-login-step-by-step__cta-text {
    font-size: 1.2em;
    color: #003366;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Checklist and Tips Section */
.page-registration-login-step-by-step__checklist,
.page-registration-login-step-by-step__tips {
    text-align: left;
}

.page-registration-login-step-by-step__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-registration-login-step-by-step__list li {
    background-color: #e6f2ff; /* Very light blue for list items */
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #003366; /* Primary color accent */
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    line-height: 1.8;
}

.page-registration-login-step-by-step__list--bullet {
    list-style: disc;
    margin-left: 25px;
    text-align: left;
    color: #333;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-registration-login-step-by-step__list--bullet li {
    background-color: transparent;
    border-left: none;
    padding: 5px 0;
    margin-bottom: 8px;
    font-size: 1em;
}

.page-registration-login-step-by-step__image-full {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Guide Section */
.page-registration-login-step-by-step__guide {
    background-color: #f0f8ff; /* Light blue background */
}

.page-registration-login-step-by-step__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-registration-login-step-by-step__step-number {
    background-color: #FFCC00; /* Secondary color for step number */
    color: #003366; /* Primary color for text on secondary background */
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.page-registration-login-step-by-step__step-item h3 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-registration-login-step-by-step__step-item p {
    color: #444;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-registration-login-step-by-step__step-item a {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-registration-login-step-by-step__step-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 20px auto;
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Verification and First Actions Sections */
.page-registration-login-step-by-step__verification,
.page-registration-login-step-by-step__first-actions {
    text-align: left;
}

/* FAQ Section */
.page-registration-login-step-by-step__faq {
    background-color: #e6f2ff; /* Light blue background */
}

.page-registration-login-step-by-step__faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-registration-login-step-by-step__faq-item h3 {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-registration-login-step-by-step__faq-item p {
    color: #555;
    font-size: 1em;
}

/* Final CTA Section */
.page-registration-login-step-by-step__final-cta {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    color: #ffffff;
    padding: 80px 0;
}

.page-registration-login-step-by-step__final-cta .page-registration-login-step-by-step__section-title {
    color: #FFCC00;
}

.page-registration-login-step-by-step__final-cta .page-registration-login-step-by-step__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-registration-login-step-by-step__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-registration-login-step-by-step__hero-title {
        font-size: 2.5em;
    }

    .page-registration-login-step-by-step__hero-subtitle {
        font-size: 1.2em;
    }

    .page-registration-login-step-by-step__section-title {
        font-size: 2em;
    }

    .page-registration-login-step-by-step__features-grid {
        grid-template-columns: 1fr;
    }

    .page-registration-login-step-by-step__btn {
        width: 100%;
        box-sizing: border-box;
    }

    .page-registration-login-step-by-step__cta-buttons {
        flex-direction: column;
    }

    .page-registration-login-step-by-step__step-item h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-registration-login-step-by-step__hero-title {
        font-size: 2em;
    }

    .page-registration-login-step-by-step__hero-subtitle {
        font-size: 1em;
    }

    .page-registration-login-step-by-step__section-title {
        font-size: 1.8em;
    }

    .page-registration-login-step-by-step__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-registration-login-step-by-step__step-item h3 {
        font-size: 1.3em;
    }

    .page-registration-login-step-by-step__list li,
    .page-registration-login-step-by-step__list--bullet li {
        font-size: 0.95em;
    }
}