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

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

/* Hero Section */
.page-register__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image block above text block */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #FFFFFF; /* Card BG, if hero has its own bg */
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Ensure it doesn't get too wide */
    margin-bottom: 20px;
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

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

.page-register__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    padding-top: 0; /* No large padding-top here, rely on body padding */
    font-size: clamp(2rem, 5vw, 3.5rem); /* H1 clamp size */
}

.page-register__subtitle {
    font-size: 1.15rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

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

.page-register__cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly altered gradient on hover */
}

/* Section Titles */
.page-register__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
    font-weight: 600;
}

/* Steps Section */
.page-register__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

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

.page-register__step-image {
    width: 100%;
    max-width: 400px; /* Example max width */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

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

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

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

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

.page-register__benefit-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #D6E2FF; /* Border color */
}

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

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

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

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

.page-register__faq-question {
    font-size: 1.25rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-register__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2F6BFF; /* Primary color */
}

/* This is a simple accordion style, could be expanded with JS */
.page-register__faq-question.active::after {
    content: '-';
}

.page-register__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    line-height: 1.5;
    margin-top: 10px;
    /* For simple CSS accordion, default hidden. JS would toggle display. */
    display: none;
}

.page-register__faq-question.active + .page-register__faq-answer {
    display: block;
}

.page-register__faq-cta {
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-register__hero-section {
        padding: 30px 15px;
    }

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

    .page-register__subtitle {
        font-size: 1rem;
    }

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

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

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

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

    .page-register__benefit-icon {
        font-size: 2rem;
    }

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

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

    .page-register__faq-answer {
        font-size: 0.95rem;
    }

    /* Ensure images in content areas are responsive and don't overflow */
    .page-register__hero-image,
    .page-register__step-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still adhere to min size */
        min-height: 200px; /* Still adhere to min size */
    }
}

/* Ensure content area images are not too small as per rule */
.page-register__steps-section img,
.page-register__hero-section img {
    min-width: 200px;
    min-height: 200px;
}