.page-register {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #F4F7FB; /* Background color for the page */
    color: #1F2D3D; /* Main text color */
}

.page-register__section-spacing {
    padding: 60px 20px;
    max-width: 1390px;
    margin: 0 auto;
}

.page-register__hero-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px; /* Space below hero content */
    background-color: #2F6BFF; /* A subtle background for hero section */
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height for aesthetic */
    margin-bottom: 20px; /* Space between image and text */
}

.page-register__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: #FFFFFF; /* White text on hero background */
}

.page-register__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: #FFFFFF;
    /* Using clamp for font-size to avoid fixed large size */
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-register__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure button is not too small */
}

.page-register__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-register__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

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

.page-register__benefit-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-register__benefit-card:hover {
    transform: translateY(-5px);
}

.page-register__benefit-title {
    font-size: 1.4rem;
    color: #2F6BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register__benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-register__how-to-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-register__how-to-steps {
    flex: 1;
    min-width: 300px;
}

.page-register__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.page-register__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #2F6BFF;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-register__step-title {
    font-size: 1.3rem;
    color: #1F2D3D;
    margin-bottom: 5px;
    font-weight: bold;
}

.page-register__step-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #1F2D3D;
}

.page-register__how-to-image {
    flex: 1;
    min-width: 400px;
    max-width: 600px; /* Set max-width for consistency */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.page-register__cta-button--bottom {
    margin-top: 40px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-register__security-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-register__security-image {
    flex: 1;
    min-width: 400px;
    max-width: 600px; /* Set max-width for consistency */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.page-register__security-text {
    flex: 1;
    min-width: 300px;
}

.page-register__security-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #1F2D3D;
}

.page-register__security-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-register__security-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #1F2D3D;
    position: relative;
    padding-left: 25px;
}

.page-register__security-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #2F6BFF;
}

.page-register__faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px;
}

.page-register__faq-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF;
}

.page-register__faq-question {
    font-size: 1.2rem;
    color: #2F6BFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-register__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-register__final-cta-section {
    background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%);
    text-align: center;
    padding: 80px 20px;
    border-radius: 15px;
    margin-bottom: 60px;
    max-width: 1390px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__final-cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-register__final-cta-description {
    font-size: 1.2rem;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.page-register__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-register__how-to-content,
    .page-register__security-content {
        flex-direction: column;
        text-align: center;
    }

    .page-register__how-to-image,
    .page-register__security-image {
        order: -1; /* Image appears above text on smaller screens */
        max-width: 100%;
        margin-bottom: 30px;
    }

    .page-register__how-to-steps {
        min-width: unset;
        width: 100%;
    }

    .page-register__step-item {
        justify-content: center;
        text-align: left; /* Keep text left-aligned in steps */
    }
}

@media (max-width: 768px) {
    .page-register__section-spacing {
        padding: 40px 15px;
    }

    .page-register__hero-section {
        padding-bottom: 30px;
    }

    .page-register__hero-image {
        margin-bottom: 15px;
    }

    .page-register__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-register__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-register__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 180px;
    }

    .page-register__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-register__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-register__benefit-card {
        padding: 25px;
    }

    .page-register__benefit-title {
        font-size: 1.2rem;
    }

    .page-register__how-to-image,
    .page-register__security-image {
        min-width: unset;
        width: 100%;
        max-width: 100%; /* Important for mobile overflow */
        height: auto; /* Important for mobile overflow */
    }

    .page-register__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        margin-right: 15px;
    }

    .page-register__step-title {
        font-size: 1.1rem;
    }

    .page-register__final-cta-section {
        padding: 50px 15px;
    }

    .page-register__final-cta-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .page-register__final-cta-description {
        font-size: 1rem;
    }

    .page-register__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    /* Enforce min-width for images in content area, but also max-width 100% for responsiveness */
    .page-register img {
        min-width: 200px; /* General rule for content images */
        max-width: 100%; /* For responsiveness */
        height: auto; /* Maintain aspect ratio */
    }
}