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

.page-register__hero-section {
    position: relative;
    padding-top: 10px; /* Small padding-top for the first section */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-register__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}

.page-register__hero-content {
    max-width: 900px;
    padding: 0 20px 40px;
    box-sizing: border-box;
}

.page-register__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 20px;
}

.page-register__subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: rgba(255, 243, 230, 0.8);
}

.page-register__cta-button {
    display: inline-flex; /* Use flex for centering content vertically/horizontally */
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4); /* Glow */
    min-height: 44px; /* Ensure touch target size */
}

.page-register__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6); /* Enhanced Glow on hover */
}

.page-register__section-title {
    font-size: 2.2em;
    color: #FFF3E6; /* Text Main */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Steps Section */
.page-register__steps-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.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: #17191F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #A84F0C; /* Border */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-register__step-image {
    width: 100%;
    max-width: 400px; /* Max width for step images */
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    min-width: 200px;
    min-height: 200px;
}

.page-register__step-title {
    font-size: 1.4em;
    color: #FFA53A; /* Auxiliary color for step titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register__step-description {
    font-size: 1em;
    color: rgba(255, 243, 230, 0.7);
}

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

.page-register__cta-button--large {
    padding: 18px 40px;
    font-size: 1.25em;
    min-width: 280px;
}

/* Benefits Section */
.page-register__benefits-section {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 20px;
    box-sizing: border-box;
}

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

.page-register__benefit-card {
    background-color: #17191F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #A84F0C; /* Border */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-register__benefit-image {
    width: 100%;
    max-width: 300px; /* Constrain image width within card */
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-register__benefit-heading {
    font-size: 1.3em;
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-register__benefit-description {
    font-size: 0.95em;
    color: rgba(255, 243, 230, 0.7);
}

/* FAQ Section */
.page-register__faq-section {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 20px;
    box-sizing: border-box;
}

.page-register__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-register__faq-item {
    background-color: #17191F; /* Card BG */
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid #A84F0C; /* Border */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-register__faq-question {
    font-size: 1.15em;
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer; /* Indicate it's clickable for expand/collapse */
}

.page-register__faq-answer {
    font-size: 1em;
    color: rgba(255, 243, 230, 0.7);
    /* Initially hidden by JS */
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-register__main-title {
        font-size: clamp(2rem, 6vw, 3rem); /* Adjust H1 for smaller screens */
    }

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

    .page-register__steps-grid,
    .page-register__benefits-grid {
        grid-template-columns: 1fr 1fr; /* Two columns for tablets */
    }
}

@media (max-width: 549px) {
    .page-register__hero-content {
        padding: 0 15px 30px;
    }

    .page-register__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem); /* Further adjust H1 for mobile */
    }

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

    .page-register__cta-button {
        width: 100%;
        max-width: 280px; /* Constrain CTA width */
        margin: 0 auto; /* Center CTA */
    }

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

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

    .page-register__step-card,
    .page-register__benefit-card {
        padding: 20px;
    }

    .page-register__step-image,
    .page-register__benefit-image {
        min-width: 200px; /* Ensure image min size */
        min-height: 200px;
    }

    /* Ensure all content area images are responsive in mobile */
    .page-register__steps-section img,
    .page-register__benefits-section img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* Global image styles for content area - ensure min 200px and responsiveness */
.page-register img {
    max-width: 100%; /* Ensure all images within .page-register are responsive */
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Enforcing minimum display size for content images, even if HTML attributes are smaller */
/* This is a safeguard against images falling below 200px in content areas */
.page-register__step-image,
.page-register__benefit-image {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure no CSS filter is applied to images */
.page-register img {
    filter: none !important;
}