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

.page-register__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding-bottom: 60px;
    text-align: center;
    background-color: #FFFFFF;
    overflow: hidden;
}

.page-register__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

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

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

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

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

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1000px; /* Adjust based on image aspect ratio and desired display */
    margin: 30px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.page-register__value-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-register__value-icon {
    width: 250px; /* Minimum 200px */
    height: 187px; /* Maintain aspect ratio for 800x600 */
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.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;
    line-height: 1.6;
}

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

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

.page-register__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    padding-left: 80px; /* Space for step number */
    text-align: left;
}

.page-register__step-item::before {
    counter-increment: step-counter;
    content: "Step " counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8em;
    font-weight: bold;
    color: #FCBC45;
    background-color: #000000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register__step-heading {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
    width: 100%;
    padding-left: 20px;
}

.page-register__step-text {
    font-size: 1.05em;
    color: #666666;
    line-height: 1.7;
    max-width: 800px;
    padding-left: 20px;
    width: 100%;
}

.page-register__step-image {
    width: 600px;
    height: 450px;
    max-width: 100%;
    height: auto;
    margin-top: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-register__final-cta {
    text-align: center;
    font-size: 1.1em;
    color: #333333;
    margin-top: 40px;
}

.page-register__text-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-register__text-link:hover {
    color: #e0a53b;
    text-decoration: underline;
}

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

.page-register__conditions-list {
    list-style: none;
    padding: 0;
}

.page-register__condition-item {
    background-color: #FFFFFF;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #FCBC45;
}

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

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

.page-register__more-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1em;
    color: #555555;
}

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

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

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

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    background-color: #fcfcfc;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

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

.page-register__faq-item[open] .page-register__faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

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

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

.page-register__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    border-top: 1px solid #eeeeee;
}

.page-register__faq-answer p {
    margin-bottom: 10px;
}

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

.page-register__faq-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.page-register__faq-button:hover {
    background-color: #e0a53b;
}

.page-register__cta-section {
    background-color: #000000; /* Main brand color for CTA */
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

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

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

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

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

/* Media queries for responsiveness */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__value-icon {
        width: 200px;
        height: 150px;
    }
    .page-register__step-image {
        width: 500px;
        height: 375px;
    }
    .page-register__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        padding-top: var(--header-offset, 120px);
        padding-bottom: 40px;
    }
    .page-register__hero-title {
        font-size: 2.2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__hero-image {
        margin-top: 20px;
    }
    .page-register__container {
        padding: 30px 15px;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__section-intro {
        font-size: 0.95em;
    }
    .page-register__value-grid {
        grid-template-columns: 1fr;
    }
    .page-register__value-item {
        padding: 25px;
    }
    .page-register__value-icon {
        width: 200px;
        height: 150px;
    }
    .page-register__step-item {
        flex-direction: column;
        padding-left: 0;
        text-align: center;
    }
    .page-register__step-item::before {
        position: static;
        margin-bottom: 20px;
    }
    .page-register__step-heading, .page-register__step-text {
        padding-left: 0;
        text-align: center;
    }
    .page-register__step-image {
        width: 100%;
        height: auto;
        max-width: 400px; /* Constrain image size on mobile */
    }
    .page-register__condition-item {
        padding: 20px;
    }
    .page-register__condition-heading {
        font-size: 1.2em;
    }
    .page-register__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-register__faq-answer {
        padding: 10px 20px 15px;
    }
    .page-register__cta-section {
        padding: 50px 15px;
    }
    .page-register__cta-title {
        font-size: 2em;
    }
    .page-register__cta-description {
        font-size: 1em;
    }
    .page-register__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Ensure all images within .page-register are responsive and don't overflow */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__section-title {
        font-size: 1.6em;
    }
    .page-register__cta-title {
        font-size: 1.8em;
    }
    .page-register__hero-button, .page-register__cta-button {
        font-size: 0.95em;
        padding: 10px 20px;
    }
    .page-register__value-icon {
        width: 200px; /* Minimum size */
        height: 150px;
    }
    .page-register__step-image {
        width: 100%;
        height: auto;
        max-width: 300px; /* Constrain image size on smaller mobiles */
    }
}