.page-register {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif; /* Example font */
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-register__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #2F6BFF; /* Main color as fallback */
    padding-bottom: 40px; /* Space between image and content below */
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    width: 100%;
}

.page-register__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width of the image itself */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
}

.page-register__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: #FFFFFF; /* White text on blue background */
}

.page-register__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-register__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter white */
}

.page-register__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-register__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D; /* Text Main */
}

.page-register__steps-section,
.page-register__benefits-section,
.page-register__faq-section,
.page-register__action-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-register__step-card,
.page-register__benefit-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

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

.page-register__step-image,
.page-register__benefit-icon {
    width: 100%;
    max-width: 400px; /* Allow step images to fill card width up to their original size */
    height: auto;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
    border-radius: 8px;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
}

.page-register__benefit-icon {
    max-width: 200px; /* Benefit icons are smaller, but still need to meet 200px minimum */
}

.page-register__step-title,
.page-register__benefit-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-register__step-description,
.page-register__benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

.page-register__cta-container {
    text-align: center;
    margin-top: 20px;
}

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

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

.page-register__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__faq-question {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

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

.page-register__faq-answer a {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-register__faq-answer a:hover {
    text-decoration: underline;
}

.page-register__action-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #1F2D3D; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-register__hero-image {
        width: 100%;
        height: auto;
    }

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

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

    .page-register__steps-grid,
    .page-register__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-register__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

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

    .page-register__cta-button {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Mobile content area images must fit and respect min-size */
    .page-register__steps-section img,
    .page-register__benefits-section img,
    .page-register__faq-section img,
    .page-register__action-section img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure the grid items themselves maintain enough width for the 200px image minimum */
    .page-register__steps-grid,
    .page-register__benefits-grid {
        grid-template-columns: minmax(280px, 1fr);
    }
}