/* Base styles for the register page */
.page-register {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section, relying on body padding-top for header offset */
}

/* Hero Section */
.page-register__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #FFFFFF; /* Card BG for hero section */
    border-bottom: 1px solid #D6E2FF; /* Border color */
    margin-bottom: 30px;
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px; /* Space between image and content */
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
}

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

.page-register__main-title {
    font-size: 2.5em; /* Use relative font size, adjust with media queries if needed */
    font-weight: 700;
    line-height: 1.2;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-register__description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-register__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    min-height: 48px; /* Ensure buttons are not too small */
}

.page-register__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

/* Section Titles */
.page-register__section-title {
    font-size: 2em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 30px;
}

/* Steps Section */
.page-register__steps-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

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

.page-register__step-card {
    text-align: center;
    background-color: #F4F7FB; /* Background color for inner cards */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-register__step-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Max width for step images */
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
}

.page-register__step-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 10px;
}

.page-register__step-text {
    color: #1F2D3D; /* Text Main */
}

.page-register__cta-button--secondary {
    margin-top: 20px;
}

/* Benefits Section */
.page-register__benefits-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

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

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

.page-register__benefit-icon {
    width: 100%;
    height: auto;
    max-width: 250px; /* Max width for benefit icons (content images) */
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
}

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

.page-register__benefit-text {
    color: #1F2D3D; /* Text Main */
}

/* FAQ Section */
.page-register__faq-section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-register__faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D6E2FF; /* Border color */
}

.page-register__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-register__faq-question {
    font-size: 1.25em;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-register__faq-answer {
    color: #1F2D3D; /* Text Main */
}

/* Bottom CTA Section */
.page-register__cta-bottom-section {
    text-align: center;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    background-color: #F4F7FB; /* Background color */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF; /* Border color */
}

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
    .page-register__main-title {
        font-size: 1.8em;
    }

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

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