.page-registration-login {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-registration-login__hero {
    background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-registration-login__hero-content {
    max-width: 800px;
}

.page-registration-login__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
}

.page-registration-login__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-registration-login__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-registration-login__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1.1em;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-registration-login__btn--primary {
    background-color: #FFD700;
    color: #CC0000;
    border-color: #FFD700;
}

.page-registration-login__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-registration-login__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-registration-login__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-registration-login__hero-image {
    max-width: 500px;
}

.page-registration-login__img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-registration-login__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-registration-login__section-title {
    font-size: 2.5em;
    color: #CC0000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-registration-login__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444444;
}

.page-registration-login__text--cta {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    color: #CC0000;
}

.page-registration-login__text--final {
    text-align: center;
    font-style: italic;
}

.page-registration-login__btn--center {
    display: block;
    margin: 30px auto 0 auto;
    width: fit-content;
}

.page-registration-login__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-registration-login__step {
    background-color: #fff8e1; /* Lighter gold background for steps */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-registration-login__step-title {
    font-size: 1.8em;
    color: #CC0000;
    margin-bottom: 15px;
}

.page-registration-login__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-registration-login__step .page-registration-login__img-responsive {
    max-width: 100%;
    border: 1px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-login__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-registration-login__benefit-item {
    text-align: center;
    padding: 30px;
    background-color: #ffe0b2; /* Lighter orange/gold background */
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-registration-login__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.page-registration-login__benefit-title {
    font-size: 1.5em;
    color: #CC0000;
    margin-bottom: 10px;
}

.page-registration-login__benefit-description {
    font-size: 1em;
    color: #555555;
}

.page-registration-login__app-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.page-registration-login__app-qr {
    text-align: center;
}

.page-registration-login__app-qr .page-registration-login__img-responsive {
    border: 5px solid #CC0000;
    padding: 10px;
    border-radius: 15px;
    width: 180px;
    height: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-registration-login__app-text {
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: bold;
    color: #CC0000;
}

.page-registration-login__app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-registration-login__btn--download {
    background-color: #CC0000;
    color: #ffffff;
    border-color: #CC0000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
}

.page-registration-login__btn--download:hover {
    background-color: #990000;
    border-color: #990000;
}

.page-registration-login__btn-icon {
    width: 24px;
    height: 24px;
}

.page-registration-login__article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-registration-login__article-item {
    background-color: #fce4ec; /* Light pinkish-red background */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-registration-login__article-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-registration-login__article-title a {
    color: #CC0000;
    text-decoration: none;
    font-weight: bold;
}

.page-registration-login__article-title a:hover {
    text-decoration: underline;
}

.page-registration-login__article-description {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-registration-login__btn--link {
    background-color: #FFD700;
    color: #CC0000;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    align-self: flex-start;
    border: 2px solid #FFD700;
}

.page-registration-login__btn--link:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-registration-login__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.page-registration-login__faq-question {
    font-size: 1.25em;
    color: #CC0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-registration-login__faq-answer {
    font-size: 1em;
    color: #555555;
}

.page-registration-login__text-link {
    color: #CC0000;
    text-decoration: underline;
    font-weight: bold;
}

.page-registration-login__text-link:hover {
    color: #990000;
}

.page-registration-login__cta {
    text-align: center;
    padding: 80px 20px;
    background-color: #CC0000;
    color: #ffffff;
    border-radius: 10px;
}

.page-registration-login__cta .page-registration-login__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-registration-login__cta .page-registration-login__text {
    color: #f0f0f0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-registration-login__cta-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.page-registration-login__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-registration-login__btn--large.page-registration-login__btn--primary {
    background-color: #FFD700;
    color: #CC0000;
    border-color: #FFD700;
}

.page-registration-login__btn--large.page-registration-login__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-registration-login__btn--large.page-registration-login__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-registration-login__btn--large.page-registration-login__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-registration-login__hero {
        padding: 60px 20px;
        flex-direction: column;
    }

    .page-registration-login__title {
        font-size: 2.8em;
    }

    .page-registration-login__section-title {
        font-size: 2em;
    }

    .page-registration-login__steps-container,
    .page-registration-login__benefit-grid,
    .page-registration-login__article-list {
        grid-template-columns: 1fr;
    }

    .page-registration-login__app-info {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-registration-login__hero-content {
        order: 2;
    }

    .page-registration-login__hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .page-registration-login__title {
        font-size: 2.2em;
    }

    .page-registration-login__subtitle {
        font-size: 1.1em;
    }

    .page-registration-login__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-registration-login__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-registration-login__section {
        padding: 40px 15px;
    }

    .page-registration-login__section-title {
        font-size: 1.8em;
    }

    .page-registration-login__step-title {
        font-size: 1.5em;
    }

    .page-registration-login__app-buttons {
        flex-direction: column;
    }

    .page-registration-login__btn--download {
        width: 80%;
        max-width: 250px;
    }

    .page-registration-login__cta .page-registration-login__text {
        font-size: 1em;
    }

    .page-registration-login__cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-registration-login__title {
        font-size: 1.8em;
    }

    .page-registration-login__subtitle {
        font-size: 1em;
    }

    .page-registration-login__section-title {
        font-size: 1.6em;
    }

    .page-registration-login__step-title {
        font-size: 1.3em;
    }

    .page-registration-login__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-registration-login__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}