.page-register {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    padding-top: 10px; /* Small top padding, body handles header offset */
}

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

/* Hero Section */
.page-register__hero-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px; /* Space below hero content */
}

.page-register__hero-image {
    display: block; /* Ensure image is not inline */
    width: 100%;
    height: auto;
    max-height: 500px; /* Limit height on desktop */
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
}

.page-register__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Ensure content is in normal flow */
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-register__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-register__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-register__hero-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.page-register__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    color: #F2C14E; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

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

.page-register__form-wrapper {
    display: flex;
    gap: 40px;
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid #2E7A4E; /* Border */
}

.page-register__form-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-register__illustration-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-register__form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-register__form-group {
    display: flex;
    flex-direction: column;
}

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

.page-register__form-input {
    padding: 12px 15px;
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-register__form-input::placeholder {
    color: #A7D9B8; /* Text Secondary */
    opacity: 0.7;
}

.page-register__form-input:focus {
    border-color: #57E38D; /* Glow */
    outline: none;
    box-shadow: 0 0 0 3px rgba(87, 227, 141, 0.3); /* Glow */
}

.page-register__checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.page-register__checkbox {
    width: 20px;
    height: 20px;
    accent-color: #11A84E; /* Primary color for checkbox */
    cursor: pointer;
}

.page-register__checkbox-label {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
}

.page-register__link {
    color: #2AD16F; /* Lighter green for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-register__link:hover {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-register__submit-button {
    padding: 15px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-register__login-prompt {
    text-align: center;
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.9em;
}

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

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

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

.page-register__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-register__benefit-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-register__benefit-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold */
}

.page-register__benefit-text {
    font-size: 1em;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
}

.page-register__cta-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-register__cta-text {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #F2FFF6; /* Text Main */
}

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

.page-register__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .page-register__form-wrapper {
        flex-direction: column;
    }
    .page-register__form-illustration {
        order: -1; /* Move illustration above form on smaller screens */
    }
}

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

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

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

    .page-register__hero-button {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .page-register__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 30px;
    }

    .page-register__form-wrapper {
        padding: 25px;
    }

    .page-register__form-group {
        gap: 5px;
    }

    .page-register__form-input {
        padding: 10px 12px;
    }

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

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

    .page-register__benefit-card {
        padding: 25px;
    }

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

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

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

    /* Important: Mobile image overflow fix */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}