/* style/register.css */

/* Base Styles & Typography */
.page-register {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: var(--background, #FFFFFF); /* Inherit from shared.css */
}

.page-register__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Consistent padding for content */
}

.page-register__hero-section,
.page-register__steps-section,
.page-register__mobile-app-section,
.page-register__conclusion-section {
    padding: 80px 0;
    text-align: center;
}

.page-register__intro-section,
.page-register__benefits-section,
.page-register__important-notes-section,
.page-register__faq-section {
    padding: 60px 0;
    text-align: center;
}

.page-register__dark-bg {
    background-color: #017439; /* Primary brand color */
    color: #ffffff; /* White text for dark background */
}

.page-register__light-bg {
    background-color: #ffffff; /* Secondary brand color / white background */
    color: #333333; /* Dark text for light background */
}

.page-register__hero-title,
.page-register__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #017439; /* Default for light backgrounds */
}

.page-register__section-title--white {
    color: #ffffff; /* White for dark backgrounds */
}

.page-register__hero-description,
.page-register__section-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555555; /* Default for light backgrounds */
}

.page-register__section-description--white {
    color: #f0f0f0; /* Lighter grey for dark backgrounds */
}

.page-register__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #017439; /* Default for light backgrounds */
}

.page-register__sub-title--white {
    color: #ffffff; /* White for dark backgrounds */
}

.page-register__paragraph {
    margin-bottom: 15px;
    text-align: left;
}

.page-register__paragraph--white {
    color: #f0f0f0;
}

/* Buttons */
.page-register__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-register__cta-full-width {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.page-register__btn-primary,
.page-register__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Ensure padding doesn't affect total width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
}

.page-register__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-register__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-register__btn-secondary {
    background-color: transparent;
    color: #017439; /* Primary brand color */
    border: 2px solid #017439;
}

.page-register__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

.page-register__btn-primary--large {
    min-width: 280px;
    font-size: 1.1em;
}

/* Specific text link color for contrast on dark background */
.page-register__step-text a,
.page-register__paragraph--white a,
.page-register__link-highlight {
    color: #FFFF00; /* Register/Login font color */
    text-decoration: underline;
}
.page-register__step-text a:hover,
.page-register__paragraph--white a:hover,
.page-register__link-highlight:hover {
    color: #ffcc00; /* Slightly darker yellow on hover */
}


/* Intro Section */
.page-register__grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.page-register__grid-two-cols--reverse {
    grid-template-columns: 1fr 1fr; /* Default order */
}

.page-register__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-register__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.page-register__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.page-register__feature-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.page-register__feature-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #017439;
}