.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 */
}

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

.page-register__hero-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.page-register__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Slightly dim the background image */
    z-index: 1;
}

.page-register__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-register__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-register__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-register__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for action */
    color: #000000;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-register__hero-button:hover {
    background-color: #e0a73d;
    transform: translateY(-2px);
}

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__cta-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

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

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

.page-register__value-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-register__value-card:hover {
    transform: translateY(-5px);
}

.page-register__value-icon {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-register__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-register__card-text {
    color: #555555;
}

.page-register__primary-button {
    display: block;
    width: fit-content;
    margin: 50px auto 0 auto;
    background-color: #000000;
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-register__primary-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-register__registration-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-register__step-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}

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

.page-register__step-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-register__step-description {
    color: #555555;
}

.page-register__steps-image {
    display: block;
    margin: 50px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register__conditions-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-register__condition-item {
    background-color: #f8f8f8;
    border-left: 5px solid #FCBC45;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: #333333;
}

.page-register__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

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

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    background-color: #FCBC45;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

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

.page-register__faq-item[open] .page-register__faq-question {
    background-color: #e0a73d;
}

.page-register__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
    transform: rotate(45deg);
}

.page-register__faq-answer {
    padding: 20px;
    color: #333333;
    background-color: #FFFFFF;
    border-top: 1px solid #eeeeee;
}

.page-register__faq-answer p {
    margin: 0;
}

.page-register__faq-image {
    display: block;
    margin: 50px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-register__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-register__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0;
}

.page-register__cta-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-register__cta-button:hover {
    background-color: #e0a73d;
    transform: translateY(-3px);
}

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

@media (max-width: 768px) {
    .page-register__hero-title {
        font-size: 2.2em;
    }
    .page-register__hero-description {
        font-size: 1.1em;
    }
    .page-register__hero-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__section-intro {
        font-size: 1em;
    }
    .page-register__value-cards {
        grid-template-columns: 1fr;
    }
    .page-register__step-title {
        font-size: 1.4em;
    }
    .page-register__faq-question {
        font-size: 1.1em;
    }
    .page-register__cta-title {
        font-size: 2em;
    }
    .page-register__cta-button {
        padding: 15px 40px;
        font-size: 1.2em;
    }

    /* Ensure images do not overflow on mobile */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__hero-description {
        font-size: 0.95em;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__cta-title {
        font-size: 1.8em;
    }
}