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

/* Variables */
:root {
    --sodo66-primary-color: #2C3E50;
    --sodo66-accent-color: #F39C12;
    --sodo66-text-dark: #333333;
    --sodo66-text-light: #FFFFFF;
    --sodo66-bg-light: #F8F9FA;
    --sodo66-border-color: #DDDDDD;
}

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

.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(--sodo66-primary-color) 0%, #4a647d 100%);
    color: var(--sodo66-text-light);
    padding: 100px 0;
    text-align: center;
}

.page-registration-guide-step-by-step__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--sodo66-text-light);
    font-weight: bold;
}

.page-registration-guide-step-by-by__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-guide-step-by-step__cta-button {
    display: inline-block;
    background-color: var(--sodo66-accent-color);
    color: var(--sodo66-text-light);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-registration-guide-step-by-step__cta-button--secondary {
    background-color: var(--sodo66-primary-color);
    border: 2px solid var(--sodo66-accent-color);
}

.page-registration-guide-step-by-step__cta-button--secondary:hover {
    background-color: #3f5870; /* Slightly lighter primary */
    border-color: #e08e0b;
}

.page-registration-guide-step-by-step__cta-button--large {
    padding: 20px 40px;
    font-size: 1.4em;
    border-radius: 10px;
}

.page-registration-guide-step-by-step__cta-button--download {
    background-color: #1A94FF; /* A distinct color for download */
    border: none;
}

.page-registration-guide-step-by-step__cta-button--download:hover {
    background-color: #007bff;
}

.page-registration-guide-step-by-step__content-section {
    padding: 60px 0;
}

.page-registration-guide-step-by-step__bg-light {
    background-color: var(--sodo66-bg-light);
}

.page-registration-guide-step-by-step__section-title {
    font-size: 2.5em;
    color: var(--sodo66-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-registration-guide-step-by-step__section-title--white {
    color: var(--sodo66-text-light);
}

.page-registration-guide-step-by-step__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-registration-guide-step-by-step__image--full-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.page-registration-guide-step-by-step__image--small-centered {
    max-width: 300px;
    margin: 30px auto;
}

.page-registration-guide-step-by-step__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-registration-guide-step-by-step__list li {
    margin-bottom: 10px;
}

.page-registration-guide-step-by-step__step-card {
    background-color: var(--sodo66-text-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--sodo66-accent-color);
}

.page-registration-guide-step-by-step__step-title {
    font-size: 1.8em;
    color: var(--sodo66-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-registration-guide-step-by-step__tip {
    background-color: #FFF3E0; /* Light orange background */
    color: #E65100; /* Darker orange text */
    padding: 15px;
    border-left: 5px solid #FF9800;
    border-radius: 5px;
    margin-top: 20px;
    font-style: italic;
}

.page-registration-guide-step-by-step__inline-link {
    color: var(--sodo66-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-registration-guide-step-by-step__inline-link:hover {
    text-decoration: underline;
}

.page-registration-guide-step-by-step__app-download-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-registration-guide-step-by-step__app-image {
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-registration-guide-step-by-step__app-image:hover {
    transform: translateY(-5px);
}

.page-registration-guide-step-by-step__app-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: center;
}

.page-registration-guide-step-by-step__app-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.page-registration-guide-step-by-step__faq-item {
    background-color: var(--sodo66-text-light);
    border: 1px solid var(--sodo66-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.page-registration-guide-step-by-step__faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-registration-guide-step-by-step__faq-question {
    font-size: 1.4em;
    color: var(--sodo66-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-registration-guide-step-by-step__faq-answer {
    font-size: 1.05em;
    color: var(--sodo66-text-dark);
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid var(--sodo66-accent-color);
}

.page-registration-guide-step-by-step__final-cta-section {
    background: linear-gradient(135deg, var(--sodo66-primary-color) 0%, #4a647d 100%);
    color: var(--sodo66-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-registration-guide-step-by-step__description--white {
    color: var(--sodo66-text-light);
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-registration-guide-step-by-step__center-content {
    text-align: center;
}

.page-registration-guide-step-by-step__mt-40 {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-registration-guide-step-by-step__hero-section {
        padding: 80px 0;
    }

    .page-registration-guide-step-by-step__main-title {
        font-size: 2.5em;
    }

    .page-registration-guide-step-by-step__hero-description {
        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__content-section p,
    .page-registration-guide-step-by-step__list li,
    .page-registration-guide-step-by-step__faq-answer {
        font-size: 1em;
    }

    .page-registration-guide-step-by-step__app-download-container {
        flex-direction: column;
    }

    .page-registration-guide-step-by-step__app-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .page-registration-guide-step-by-step__hero-section {
        padding: 60px 0;
    }

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

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

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

    .page-registration-guide-step-by-step__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }

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

    .page-registration-guide-step-by-step__step-card {
        padding: 20px;
    }

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

    .page-registration-guide-step-by-step__list {
        margin-left: 20px;
    }

    .page-registration-guide-step-by-step__faq-question {
        font-size: 1.2em;
    }
}