.page-register {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

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

/* Hero Section */
.page-register__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image above content on smaller screens first */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-register__hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.page-register__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for h1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-register__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Adjust based on image aspect ratio and container */
    margin-top: 20px;
    z-index: 1;
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

/* Section Titles */
.page-register__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

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

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

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

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

.page-register__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-register__step-title {
    font-size: 1.4em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-register__step-description {
    font-size: 1em;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-register__steps-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
    min-width: 200px; /* Ensure min size */
}

/* Benefits Section */
.page-register__benefits-section {
    padding: 60px 0;
    background-color: #E8F0FE; /* Light blue background, coordinating with main color */
}

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

.page-register__benefit-card {
    background-color: #FFFFFF; /* Card BG */
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
}

.page-register__benefit-title {
    font-size: 1.3em;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-register__benefit-description {
    font-size: 0.95em;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-register__benefits-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
    min-width: 200px; /* Ensure min size */
}

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

.page-register__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-register__faq-question {
    font-size: 1.2em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer; /* Indicate it's clickable for accordion */
}

.page-register__faq-answer {
    font-size: 1em;
    color: #000000; /* Custom Color_1776249996415 */
    /* For accordion, this would be hidden by default and shown with JS */
}

/* Bottom CTA Section */
.page-register__cta-section--bottom {
    padding: 60px 0;
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    text-align: center;
}

.page-register__cta-section--bottom .page-register__section-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-register__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-register__hero-section {
        flex-direction: row; /* Image right, content left on desktop */
        text-align: left;
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
        justify-content: space-between;
    }

    .page-register__hero-content {
        flex: 1;
        max-width: 50%;
        padding-right: 40px;
        text-align: left;
    }

    .page-register__hero-image-wrapper {
        flex: 1;
        max-width: 50%;
        margin-top: 0;
    }

    .page-register__main-title {
        font-size: clamp(2.5em, 4vw, 3.5em);
    }

    .page-register__steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

    .page-register__intro-text {
        font-size: 1em;
    }

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

    .page-register__steps-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }

    .page-register__benefits-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

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

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

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

    /* Ensure images don't overflow */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__steps-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
}