.page-register {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-register__hero-section {
    position: relative;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient as background if no image yet */
    padding-bottom: 40px; /* Space below content */
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px; /* Limit height for hero image */
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-register__hero-content {
    padding: 40px 20px;
    color: #FFFFFF; /* White text on blue background */
    max-width: 800px;
    margin: 0 auto;
}

.page-register__main-title {
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFFFFF;
    /* No fixed font-size for H1, use clamp if needed, otherwise rely on default + weight */
    font-size: clamp(2rem, 5vw, 2.8rem); /* Example clamp for H1 */
    line-height: 1.2;
}

.page-register__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-register__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-register__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly darker/inverted gradient on hover */
}

/* Section Title */
.page-register__section-title {
    font-size: 2.2rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

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

.page-register__benefit-item {
    background-color: #F4F7FB; /* Background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-register__benefit-title {
    font-size: 1.4rem;
    color: #2F6BFF; /* Main color */
    margin-bottom: 15px;
}

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

.page-register__benefits-image {
    display: block;
    margin: 40px auto 0;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

/* Steps Section */
.page-register__steps-section {
    padding: 60px 0;
}

.page-register__step-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-register__step-item {
    background-color: #FFFFFF; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-register__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(47, 107, 255, 0.4); /* Glow color for shadow */
}

.page-register__step-title {
    font-size: 1.3rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

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

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

.page-register__security-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-register__security-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-height: 200px; /* Enforce minimum size */
}

.page-register__security-text {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    color: #1F2D3D; /* Text Main */
}

.page-register__security-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.page-register__security-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-register__security-text li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-register__security-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2F6BFF; /* Main color */
    font-weight: bold;
}

.page-register__read-more-link {
    color: #2F6BFF; /* Main color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-register__read-more-link:hover {
    color: #6FA3FF; /* Auxiliary color */
}

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

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

.page-register__faq-item {
    background-color: #F4F7FB; /* Background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF; /* Border color */
}

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

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

.page-register__faq-image {
    display: block;
    margin: 40px auto 0;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

/* CTA Bottom Section */
.page-register__cta-bottom-section {
    padding: 60px 0;
    text-align: center;
    background-color: #F4F7FB; /* Background */
}

.page-register__cta-bottom-section .page-register__description {
    color: #1F2D3D; /* Text Main */
    margin-bottom: 40px;
}

.page-register__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-register__cta-button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
}

.page-register__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #2F6BFF; /* Main color for border */
    color: #2F6BFF; /* Main color for text */
}

.page-register__cta-button--secondary:hover {
    background-color: #2F6BFF; /* Main color on hover */
    color: #FFFFFF;
}

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

    .page-register__hero-content {
        padding: 30px 15px;
    }

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

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

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

    .page-register__benefits-section,
    .page-register__steps-section,
    .page-register__security-section,
    .page-register__faq-section,
    .page-register__cta-bottom-section {
        padding: 40px 0;
    }

    .page-register__security-content {
        flex-direction: column;
    }

    .page-register__security-image,
    .page-register__security-text {
        max-width: 100%;
    }

    .page-register__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-register__cta-button {
        width: 100%;
        max-width: 300px; /* Limit button width on mobile */
    }

    /* Mobile image overflow fix */
    .page-register__hero-image,
    .page-register__benefits-image,
    .page-register__security-image,
    .page-register__faq-image {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all content images in .page-register are at least 200px wide */
.page-register img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensure images fill their space nicely */
}

/* Mobile specific for images, ensuring no overflow */
@media (max-width: 768px) {
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}