.page-register {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding to avoid header overlap, body handles the main 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 above text */
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
    background-color: #F4F7FB; /* Match page background */
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px;
}

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

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

.page-register__main-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-register__hero-description {
    font-size: 1.15rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-register__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(47, 107, 255, 0.6);
}

/* General Section Styling */
.page-register__section-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-register__section-description {
    font-size: 1.05rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Registration Form Section */
.page-register__form-section {
    padding: 60px 0;
    background-color: #F4F7FB;
}

.page-register__registration-form {
    background-color: #FFFFFF; /* Card BG */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.page-register__form-group {
    margin-bottom: 20px;
}

.page-register__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1F2D3D; /* Text Main */
}

.page-register__form-input {
    width: calc(100% - 24px); /* Account for padding */
    padding: 12px;
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    font-size: 1rem;
    color: #1F2D3D;
    background-color: #FFFFFF;
}

.page-register__form-input::placeholder {
    color: #6FA3FF; /* Auxiliary color for placeholders */
    opacity: 0.7;
}

.page-register__checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
    margin-bottom: 30px;
}

.page-register__checkbox {
    margin-right: 10px;
    min-width: 18px; /* Ensure checkbox is visible */
    min-height: 18px;
    cursor: pointer;
}

.page-register__checkbox-label {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
}

.page-register__terms-link {
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: 500;
}

.page-register__terms-link:hover {
    text-decoration: underline;
}

.page-register__submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-register__submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(47, 107, 255, 0.6);
}

.page-register__login-prompt {
    text-align: center;
    margin-top: 25px;
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

.page-register__login-link {
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: 500;
}

.page-register__login-link:hover {
    text-decoration: underline;
}

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

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

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

.page-register__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-register__benefit-icon {
    width: 100%; /* Make icon responsive within its card */
    max-width: 250px; /* Constrain max size */
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 8px; /* Slightly rounded corners for benefit images */
}

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

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

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

.page-register__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-register__faq-question {
    color: #2F6BFF; /* Primary color for questions */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-register__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

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

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

    .page-register__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

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

    .page-register__hero-image {
        max-width: 100%;
        height: auto;
    }

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

    .page-register__container {
        padding: 15px;
    }

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

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

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

    .page-register__section-title {
        font-size: 1.8rem;
    }

    .page-register__section-description {
        font-size: 0.95rem;
    }

    .page-register__registration-form {
        padding: 25px;
    }

    .page-register__form-input {
        width: calc(100% - 20px); /* Adjust for smaller padding */
        padding: 10px;
    }

    .page-register__checkbox-label {
        font-size: 0.9rem;
    }

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

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

    .page-register__benefit-icon {
        max-width: 200px; /* Adjust max-width for smaller screens */
        height: auto;
    }

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

    /* All images within .page-register must be responsive */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are never smaller than 200px display width/height */
.page-register__benefits-section .page-register__benefit-icon {
    min-width: 200px;
    min-height: 200px; /* Ensure images meet minimum size requirement */
    object-fit: contain; /* Or cover, depending on desired crop */
}

/* Ensure no filter on images */
.page-register img {
    filter: none !important;
}