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

.page-register__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-register__hero-section {
    display: flex;
    flex-direction: column; /* Image above, text below */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #F4F7FB;
}

.page-register__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(47, 107, 255, 0.2); /* Glow color with opacity */
    margin-bottom: 30px;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-register__hero-content {
    max-width: 900px;
}

.page-register__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D; /* Text Main color */
    margin-bottom: 20px;
    /* No fixed font-size, relying on weight and line-height for visual hierarchy */
}
@media (min-width: 769px) {
    .page-register__main-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem); /* Example clamp for desktop */
    }
}
@media (max-width: 768px) {
    .page-register__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem); /* Example clamp for mobile */
    }
}


.page-register__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 30px;
}

.page-register__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF; /* White text for contrast */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3); /* Main color with opacity */
    min-width: 200px; /* Ensure minimum button size */
}

.page-register__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-register__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-register__steps-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
}

.page-register__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-register__step-card {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(47, 107, 255, 0.08);
    transition: transform 0.3s ease;
    min-height: 200px; /* Ensure minimum card size */
}

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

.page-register__step-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-register__step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2F6BFF; /* Main color for emphasis */
    margin-bottom: 10px;
}

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

.page-register__benefits-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
}

.page-register__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-register__benefit-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(47, 107, 255, 0.08);
    min-height: 200px; /* Ensure minimum item size */
}

.page-register__benefit-icon {
    font-size: 2.5rem;
    color: #2F6BFF; /* Main color */
    margin-bottom: 15px;
}

.page-register__benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 10px;
}

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

.page-register__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
}

.page-register__faq-item {
    background-color: #F4F7FB; /* Lighter background for FAQ item */
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border: 1px solid #D6E2FF;
    box-shadow: 0 2px 8px rgba(47, 107, 255, 0.05);
}

.page-register__faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
}

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

.page-register__cta-section {
    padding: 80px 0;
    background-color: #F4F7FB; /* Background color */
    text-align: center;
}

.page-register__cta-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-register__cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2D3D;
    margin-bottom: 20px;
}

.page-register__cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 30px;
}

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

.page-register__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.25);
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-register__hero-section {
        padding: 20px 15px;
    }

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

    .page-register__main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .page-register__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

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

    .page-register__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-register__steps-section,
    .page-register__benefits-section,
    .page-register__faq-section,
    .page-register__cta-section {
        padding: 40px 0;
    }

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

    .page-register__step-image {
        height: 200px; /* Adjust height for mobile */
    }

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

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

    .page-register__faq-question {
        font-size: 1.1rem;
    }

    .page-register__cta-title {
        font-size: 2rem;
    }

    .page-register__cta-text {
        font-size: 1.1rem;
    }

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

/* Enforce min-size and responsive for all images within .page-register for mobile */
@media (max-width: 768px) {
    .page-register img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size even on mobile */
        min-height: 200px;
    }
    .page-register__step-image {
        height: auto; /* Let height adjust to maintain aspect ratio */
    }
}

/* CSS for all images within .page-register to ensure minimum size and no filter */
.page-register img {
    min-width: 200px;
    min-height: 200px;
    filter: none; /* Absolutely no filter */
}

/* Ensure no CSS filter is applied to images */
.page-register__hero-image,
.page-register__step-image,
.page-register__cta-image {
    filter: none !important; /* Double-check to prevent any filter */
}

/* Ensure content area images CSS width/height are not less than 200px */
.page-register__step-image,
.page-register__cta-image {
    /* These specific classes are for content images.
       Their width/height attributes are set to 400x300 and 600x450 respectively, 
       which are > 200px. CSS should respect this or use responsive properties. */
    max-width: 100%; /* Responsive */
    height: auto;    /* Responsive */
}