/* style/registration-guide-step-by-step.css */

:root {
    --page-registration-guide-step-by-step-primary-color: #0A2463;
    --page-registration-guide-step-by-step-accent-color: #FFD700;
    --page-registration-guide-step-by-step-text-light: #F8F8F8;
    --page-registration-guide-step-by-step-text-dark: #333333;
    --page-registration-guide-step-by-step-background-light: #FFFFFF;
    --page-registration-guide-step-by-step-background-dark: #1A1A2E;
    --page-registration-guide-step-by-step-border-color: #E0E0E0;
}

.page-registration-guide-step-by-step {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-registration-guide-step-by-step-text-dark);
    background-color: var(--page-registration-guide-step-by-step-background-light);
}

.page-registration-guide-step-by-step__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-registration-guide-step-by-step__hero-section {
    background: linear-gradient(135deg, var(--page-registration-guide-step-by-step-primary-color) 0%, #1A3A7A 100%);
    color: var(--page-registration-guide-step-by-step-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-guide-step-by-step__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-registration-guide-step-by-step__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-registration-guide-step-by-step-accent-color);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-registration-guide-step-by-by__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.page-registration-guide-step-by-step__cta-button {
    display: inline-block;
    background-color: var(--page-registration-guide-step-by-step-accent-color);
    color: var(--page-registration-guide-step-by-step-primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-step-by-step__cta-button:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-registration-guide-step-by-step__content-section {
    padding: 60px 0;
    background-color: var(--page-registration-guide-step-by-step-background-light);
}

.page-registration-guide-step-by-step__section-title {
    font-size: 2.5em;
    color: var(--page-registration-guide-step-by-step-primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-registration-guide-step-by-step__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-registration-guide-step-by-step-accent-color);
    border-radius: 2px;
}

.page-registration-guide-step-by-step p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-registration-guide-step-by-step__benefits-list,
.page-registration-guide-step-by-step__preparation-list,
.page-registration-guide-step-by-step__form-list,
.page-registration-guide-step-by-step__verification-list,
.page-registration-guide-step-by-step__troubleshoot-list,
.page-registration-guide-step-by-step__safety-tips-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-registration-guide-step-by-step__benefits-list li,
.page-registration-guide-step-by-step__preparation-list li,
.page-registration-guide-step-by-step__form-list li,
.page-registration-guide-step-by-step__verification-list li,
.page-registration-guide-step-by-step__troubleshoot-list li,
.page-registration-guide-step-by-step__safety-tips-list li {
    background-color: #f9f9f9;
    border-left: 5px solid var(--page-registration-guide-step-by-step-accent-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.page-registration-guide-step-by-step__benefits-list li:hover,
.page-registration-guide-step-by-step__preparation-list li:hover,
.page-registration-guide-step-by-step__form-list li:hover,
.page-registration-guide-step-by-step__verification-list li:hover,
.page-registration-guide-step-by-step__troubleshoot-list li:hover,
.page-registration-guide-step-by-step__safety-tips-list li:hover {
    transform: translateX(5px);
}

.page-registration-guide-step-by-step__step-card {
    background-color: var(--page-registration-guide-step-by-step-background-light);
    border: 1px solid var(--page-registration-guide-step-by-step-border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.page-registration-guide-step-by-step__step-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.page-registration-guide-step-by-step__step-title {
    font-size: 1.8em;
    color: var(--page-registration-guide-step-by-step-primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--page-registration-guide-step-by-step-accent-color);
    padding-bottom: 10px;
}

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

.page-registration-guide-step-by-step__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-step-by-step__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-registration-guide-step-by-step__app-download-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
}

.page-registration-guide-step-by-step__app-download-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-registration-guide-step-by-step__final-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-registration-guide-step-by-step__login-button {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--page-registration-guide-step-by-step-primary-color);
    color: var(--page-registration-guide-step-by-step-primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-step-by-step__login-button:hover {
    background-color: var(--page-registration-guide-step-by-step-primary-color);
    color: var(--page-registration-guide-step-by-step-text-light);
    transform: translateY(-3px);
}

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

    .page-registration-guide-step-by-step__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-registration-guide-step-by-step__step-title {
        font-size: 1.5em;
    }

    .page-registration-guide-step-by-step__cta-button,
    .page-registration-guide-step-by-step__login-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-registration-guide-step-by-step__final-cta {
        flex-direction: column;
        gap: 15px;
    }
}

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

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

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

    .page-registration-guide-step-by-step__step-title {
        font-size: 1.3em;
    }

    .page-registration-guide-step-by-step__cta-button,
    .page-registration-guide-step-by-step__login-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}