.page-register {
    color: #333333; /* Dark text for light body background */
}

.page-register__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    overflow: hidden; /* Prevent image overflow */
}

.page-register__hero-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000000; /* Fallback for image loading */
}

.page-register__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-register__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    color: #FFFFFF;
}

.page-register__hero-title {
    font-size: clamp(1.8em, 4vw, 3.5em);
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-register__hero-description {
    font-size: clamp(1em, 1.8vw, 1.3em);
    max-width: 800px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #F0F0F0;
}

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

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

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

.page-register__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

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

.page-register__value-item {
    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-item:hover {
    transform: translateY(-5px);
}

.page-register__value-icon {
    width: 100%; /* Ensure images are responsive within their containers */
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-register__value-heading {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-register__value-text {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

.page-register__steps-section {
    background-color: #f0f0f0;
    padding: 60px 0;
}

.page-register__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.page-register__step-item {
    background-color: #FFFFFF;
    border-left: 5px solid #FCBC45;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-register__step-heading {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-register__step-text {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

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

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

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

.page-register__conditions-list {
    list-style: disc;
    margin: 0 auto;
    padding-left: 25px;
    max-width: 900px;
    color: #555555;
}

.page-register__condition-item {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1em;
}

.page-register__condition-item a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: 600;
}

.page-register__condition-item a:hover {
    text-decoration: underline;
}

.page-register__faq-section {
    background-color: #f0f0f0;
    padding: 60px 0;
}

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

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

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

.page-register__faq-item[open] .page-register__faq-question {
    background-color: #f8f8f8;
    border-bottom: none;
}

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

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

.page-register__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .page-register__hero-title {
        font-size: 2em;
    }

    .page-register__hero-description {
        font-size: 0.95em;
    }

    .page-register__register-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-register__section-title {
        font-size: 1.5em;
    }

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

    .page-register__value-item {
        padding: 25px;
    }

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

    .page-register__step-item {
        padding: 20px 25px;
    }

    .page-register__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-register__conditions-list {
        padding-left: 20px;
    }

    .page-register__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-register__faq-answer {
        padding: 0 20px 15px 20px;
    }

    /* Mobile overflow prevention */
    .page-register img {
        max-width: 100%;
        height: auto;
    }

    .page-register {
        overflow-x: hidden;
    }
}