.page-register {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--deep-navy); /* #08162B */
    color: var(--text-main); /* #F3F8FF */
    font-family: Arial, sans-serif;
}

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

.page-register__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    background-color: var(--deep-navy);
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-height: 675px;
    min-height: 300px;
}

.page-register__hero-content {
    padding: 20px 15px;
    text-align: center;
    max-width: 900px;
    margin-top: 20px;
}

.page-register__hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-register__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-register__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    min-height: 44px;
    box-sizing: border-box;
}

.page-register__cta-button:hover {
    opacity: 0.9;
}

.page-register__why-register,
.page-register__steps,
.page-register__security,
.page-register__cta-section {
    padding: 60px 0;
    background-color: var(--deep-navy);
}

.page-register__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-register__section-title--gradient {
    background: linear-gradient(90deg, var(--gold) 0%, var(--glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

.page-register__benefit-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-register__benefit-icon {
    width: 100%; /* Ensure image is not smaller than 200px */
    max-width: 250px; /* Example size, ensuring min 200px */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-register__benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.page-register__benefit-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.page-register__step-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.page-register__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__step-number {
    width: 60px;
    height: 60px;
    background: var(--button-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-register__step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-register__step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 700px;
}

.page-register__step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-register__security-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-register__security-links {
    text-align: center;
    margin-top: 20px;
}

.page-register__link {
    color: var(--glow);
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.page-register__link:hover {
    color: var(--gold);
}

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

.page-register__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__cta-button--large {
    padding: 18px 40px;
    font-size: 1.25rem;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-register__hero-image {
        max-height: 400px;
    }

    .page-register__hero-content {
        margin-top: 15px;
    }

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

    .page-register__hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .page-register__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

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

    .page-register__step-title {
        font-size: 1.5rem;
    }

    .page-register__step-image {
        max-width: 100%;
    }
}

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

    /* Prevent image overflow on mobile */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-register__hero-image {
        max-height: 300px;
    }

    .page-register__hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .page-register__hero-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
    }

    .page-register__cta-button {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
    }

    .page-register__section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

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

    .page-register__benefit-icon {
        max-width: 200px;
        min-width: 200px;
        min-height: 200px;
    }

    .page-register__benefit-title {
        font-size: 1.3rem;
    }

    .page-register__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .page-register__step-title {
        font-size: 1.3rem;
    }

    .page-register__step-image {
        max-width: 100%;
        min-width: 200px;
        min-height: 200px;
    }

    .page-register__link {
        margin: 0 8px;
        display: block;
        margin-bottom: 10px;
    }

    .page-register__cta-button--large {
        width: 100%;
        max-width: 300px;
        font-size: 1.1rem;
    }
}