.page-register {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-register__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Minimum height for hero section */
}

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

.page-register__hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-register__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Login button color for emphasis */
}

.page-register__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__hero-button {
    display: inline-block;
    background-color: #FFFFFF; /* Register button color */
    color: #000000; /* Dark text on light button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-register__hero-button:hover {
    background-color: #FCBC45; /* Login button color on hover */
    color: #FFFFFF;
}

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

.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;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

.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: #f8f8f8;
}

.page-register__value-section:nth-of-type(odd),
.page-register__conditions-section:nth-of-type(odd),
.page-register__cta-section:nth-of-type(odd) {
    background-color: #FFFFFF;
}

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

.page-register__value-item {
    background-color: #FFFFFF;
    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: 250px;
    height: 187px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-register__value-text {
    font-size: 1em;
    color: #666666;
}

.page-register__call-to-action-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #000000;
}

.page-register__main-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #FCBC45; /* Login button color */
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-register__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

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

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

.page-register__step-text {
    font-size: 1em;
    color: #666666;
}

.page-register__conditions-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
    font-size: 1.1em;
    color: #444444;
}

.page-register__condition-item {
    margin-bottom: 15px;
}

.page-register__condition-item strong {
    color: #000000;
}

.page-register__secondary-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.page-register__secondary-button:hover {
    background-color: #333333;
}

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

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

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

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

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

.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: 0 25px 20px 25px;
    font-size: 1em;
    color: #666666;
}

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

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

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

.page-register__cta-button {
    display: inline-block;
    background-color: #FFFFFF; /* Register button color */
    color: #000000;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-register__cta-button:hover {
    background-color: #FCBC45; /* Login button color on hover */
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }
    .page-register__section-title {
        font-size: 2.2em;
    }
    .page-register__value-icon {
        width: 220px;
        height: 165px;
    }
}

@media (max-width: 768px) {
    .page-register {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
    .page-register__hero-section {
        min-height: 450px;
        padding: 30px 15px;
    }
    .page-register__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-register__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-register__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__content-area {
        padding: 30px 15px;
    }
    .page-register__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-register__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-register__value-grid {
        grid-template-columns: 1fr;
    }
    .page-register__value-item {
        padding: 25px;
    }
    .page-register__value-icon {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    .page-register__value-heading {
        font-size: 1.3em;
    }
    .page-register__step-item {
        padding: 20px 25px;
    }
    .page-register__step-heading {
        font-size: 1.4em;
    }
    .page-register__conditions-list {
        padding-left: 20px;
        font-size: 1em;
    }
    .page-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-register__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-register__cta-section {
        padding: 60px 15px;
    }
    .page-register__cta-title {
        font-size: 2.2em;
    }
    .page-register__cta-description {
        font-size: 1em;
    }
    .page-register__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    /* Mobile content area images must not overflow */
    .page-register__content-area img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__hero-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-register__section-title {
        font-size: 1.6em;
    }
    .page-register__value-heading {
        font-size: 1.2em;
    }
    .page-register__main-button {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    .page-register__step-heading {
        font-size: 1.2em;
    }
    .page-register__faq-question {
        font-size: 1em;
    }
    .page-register__cta-title {
        font-size: 1.8em;
    }
    .page-register__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}