.page-register {
    background-color: #F4F7FB; /* Use specified background color */
    color: #1F2D3D; /* Use specified main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-register__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, relying on body padding for header offset */
    background-color: #0a0909; /* Deep red/dark background for hero */
    display: flex;
    flex-direction: column; /* Image then text */
    align-items: center; /* Center content horizontally */
    overflow: hidden; /* Ensure no overflow */
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 20px; /* Space between image and text */
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-register__hero-content {
    max-width: 900px; /* Constrain text width */
    text-align: center;
    padding: 0 20px 60px; /* Padding for text content */
    color: #FFFFFF; /* White text on dark background */
}

.page-register__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #D6D604; /* Yellow-green/lemon yellow accent */
    margin-bottom: 20px;
    max-width: 100%; /* Ensure H1 doesn't overflow */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add subtle text shadow for contrast */
}

.page-register__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter white for description */
}

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

.page-register__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Slight variation on hover */
}

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

.page-register__section-title {
    text-align: center;
    color: #1F2D3D; /* Main text color */
    margin-bottom: 50px;
    font-size: 2.2em;
    font-weight: bold;
    line-height: 1.3;
}

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

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

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

.page-register__step-icon,
.page-register__benefit-icon {
    width: 100%; /* Ensure images are responsive within card */
    height: auto;
    max-width: 400px; /* Example max width, will be overridden by HTML width/height */
    margin: 0 auto 20px;
    display: block;
    border-radius: 8px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    object-fit: cover;
}


.page-register__step-title,
.page-register__benefit-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register__step-description,
.page-register__benefit-description {
    color: #1F2D3D; /* Main text color */
    font-size: 1em;
}

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

.page-register__main-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Specified button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2em;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    min-width: 250px; /* Ensure button is not too small */
    min-height: 60px; /* Ensure button is not too small */
}

.page-register__main-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Slight variation on hover */
}

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

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

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

.page-register__faq-question {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer; /* Indicate interactivity */
}

.page-register__faq-answer {
    color: #1F2D3D; /* Main text color */
    font-size: 1em;
    line-height: 1.5;
    /* Initially hidden, will be toggled by JS */
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-register__security-section {
    background-color: #0a0909; /* Deep dark background */
    color: #E0E0E0;
    padding: 60px 20px;
    text-align: center;
}

.page-register__security-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1em;
}

.page-register__security-link {
    color: #D6D604; /* Yellow-green/lemon yellow accent */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-register__security-link:hover {
    color: #6FA3FF; /* Accent color on hover */
    text-decoration: underline;
}

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

    .page-register__hero-title {
        font-size: 2.5em; /* Adjusted for medium screens */
    }

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

@media (max-width: 768px) {
    .page-register__hero-title {
        font-size: 1.8em; /* Adjusted for mobile */
        margin-bottom: 15px;
    }

    .page-register__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

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

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

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

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

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

    .page-register__main-cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }

    .page-register__faq-item {
        padding: 20px;
    }

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

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

/* Ensure all content images within .page-register are at least 200px wide on desktop */
.page-register__steps-grid img,
.page-register__benefits-grid img {
    min-width: 200px;
    min-height: 200px;
}

/* Contrast check for button text on button background */
.page-register__cta-button,
.page-register__main-cta-button {
    /* Text color #FFFFFF on linear-gradient from #4A8BFF to #2F6BFF */
    /* Average color is a medium blue, contrast should be fine. */
}

/* Contrast check for #D6D604 on dark background #0a0909 */
/* This contrast needs to be checked. D6D604 is a bright yellow. Should be fine. */
/* Contrast check for #E0E0E0 on dark background #0a0909 */
/* This contrast needs to be checked. E0E0E0 is light gray. Should be fine. */

/* Contrast check for #1F2D3D on #F4F7FB */
/* This is dark text on light background. Should be fine. */
/* Contrast check for #000000 on #FFFFFF */
/* This is black on white. Excellent contrast. */

/* Ensure no `font-size` for H1, relying on `clamp` or responsive adjustments if necessary */
/* For now, just using responsive adjustments via media queries. */