.page-register {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

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

.page-register__hero-section {
    position: relative;
    text-align: center;
    padding: 80px 20px 40px; /* Adjust padding for content above image */
    background-color: #FFFFFF; /* Ensure background matches body for seamless look */
}

.page-register__hero-image-wrapper {
    margin-top: 40px; /* Space between text and image */
    max-width: 100%;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-register__hero-image {
    display: block;
    width: 100%; /* Ensure image fills its wrapper */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-register__hero-title {
    font-size: 3.2em;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-register__hero-description {
    font-size: 1.2em;
    color: #333333;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.page-register__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-register__button--primary {
    background-color: #FCBC45; /* Login color as primary action button background */
    color: #000000; /* Dark text for light background */
}

.page-register__button--primary:hover {
    background-color: #e0a73c;
    transform: translateY(-2px);
}

.page-register__button--secondary {
    background-color: #000000; /* Black background */
    color: #FCBC45; /* Login color as text */
    border: 2px solid #FCBC45;
}

.page-register__button--secondary:hover {
    background-color: #333333;
    color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.page-register__button--large {
    padding: 18px 35px;
    font-size: 1.3em;
}

.page-register__section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-register__section:nth-of-type(even) {
    background-color: #f9f9f9; /* Slightly different background for visual separation */
}

.page-register__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-register__section-intro {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.page-register__why-register-item {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-register__why-register-item:hover {
    transform: translateY(-5px);
}

.page-register__why-register-heading {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register__why-register-text {
    color: #444444;
}

.page-register__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-bottom: 40px;
}

.page-register__steps-item {
    background-color: #f0f0f0;
    padding: 25px 30px 25px 70px;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-register__steps-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 25px;
    top: 25px;
    background-color: #FCBC45;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
    font-weight: bold;
}

.page-register__steps-heading {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-register__steps-text {
    color: #444444;
}

.page-register__conditions-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-register__conditions-item {
    background-color: #f0f0f0;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FCBC45;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-register__conditions-heading {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-register__conditions-text {
    color: #444444;
}

.page-register__faq-list {
    margin-top: 30px;
}

.page-register__faq-item {
    background-color: #f0f0f0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register__faq-question {
    display: block;
    padding: 20px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    position: relative;
    user-select: none;
    background-color: #e8e8e8;
    transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
    background-color: #e0e0e0;
}

.page-register__faq-toggle {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
    transform: translateY(-50%) rotate(45deg); /* Change to X or rotate for open state */
}

.page-register__faq-answer {
    padding: 0 30px 20px;
    font-size: 1.1em;
    color: #444444;
}

.page-register__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #000000; /* Dark background for this CTA */
    border-radius: 10px;
    color: #FFFFFF;
}

.page-register__cta-text {
    font-size: 1.3em;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-register__cta-content {
    text-align: center;
}

.page-register__cta-description {
    font-size: 1.2em;
    color: #555555;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-register__image {
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-register__image--full-width {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure it respects container width */
}

.page-register__image--centered {
    max-width: 80%; /* Smaller for inline content */
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }
    .page-register__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-register {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-register__hero-section {
        padding: 60px 15px 30px;
    }
    .page-register__hero-title {
        font-size: 2.2em;
    }
    .page-register__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-register__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-register__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-register__section {
        padding: 40px 0;
    }
    .page-register__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-register__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-register__why-register-grid {
        grid-template-columns: 1fr;
    }
    .page-register__steps-item {
        padding: 20px 20px 20px 60px;
    }
    .page-register__steps-item::before {
        left: 15px;
        top: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
    .page-register__steps-heading,
    .page-register__conditions-heading {
        font-size: 1.3em;
    }
    .page-register__faq-question {
        font-size: 1.1em;
        padding: 18px 25px;
    }
    .page-register__faq-toggle {
        right: 25px;
        font-size: 1.3em;
    }
    .page-register__faq-answer {
        padding: 0 25px 15px;
        font-size: 1em;
    }
    .page-register__cta-bottom {
        padding: 20px;
    }
    .page-register__cta-text {
        font-size: 1.1em;
    }
    .page-register__image,
    .page-register__image--full-width,
    .page-register__image--centered {
        max-width: 100%; /* Ensure all images are responsive */
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    /* Content area images must be >= 200px. max-width: 100%; height: auto; is good. */
    .page-register img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min width */
        min-height: 200px; /* Enforce min height */
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__section-title {
        font-size: 1.6em;
    }
    .page-register__button {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-register__button--large {
        font-size: 1.1em;
        padding: 15px 25px;
    }
}