.page-register {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #FFFFFF;
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-register__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #FFFFFF;
    padding: 20px;
}

.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: 900px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-register__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Gold accent for title */
    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__register-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FCBC45; /* Login button color for CTA */
    color: #000000; /* Dark text for contrast */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

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

.page-register__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-register__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

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

.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: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-register__value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-register__value-icon {
    width: 250px; /* Min width 200px */
    height: 187px; /* Corresponding height */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

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

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

.page-register__register-button--bottom {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

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

.page-register__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register__step-item:nth-child(even) {
    background-color: #e8e8e8;
}

.page-register__step-heading {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.page-register__step-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 20px;
    max-width: 700px;
}

.page-register__step-image {
    width: 600px; /* Min width 200px */
    height: 450px; /* Corresponding height */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-register__condition-item {
    background-color: #f8f8f8;
    border-left: 5px solid #FCBC45;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.page-register__condition-text a {
    color: #FCBC45;
    text-decoration: none;
}

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

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

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

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

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

.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: 20px 25px;
    font-size: 1em;
    color: #555555;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

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

.page-register__faq-answer a {
    color: #FCBC45;
    text-decoration: none;
}

.page-register__faq-answer a:hover {
    text-decoration: underline;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }

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

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

    .page-register__value-heading {
        font-size: 1.4em;
    }

    .page-register__step-heading {
        font-size: 1.6em;
    }

    .page-register__step-image {
        width: 500px;
        height: 375px;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        height: 500px;
        padding: 15px;
    }

    .page-register__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-register__content-wrapper {
        padding: 30px 15px;
    }

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

    .page-register__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

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

    .page-register__value-icon {
        width: 200px; /* Min width 200px */
        height: 150px; /* Corresponding height */
    }

    .page-register__value-heading {
        font-size: 1.3em;
    }

    .page-register__step-item {
        padding: 15px;
        margin-bottom: 40px;
    }

    .page-register__step-heading {
        font-size: 1.4em;
    }

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

    .page-register__step-image {
        max-width: 100%;
        height: auto;
    }

    .page-register__condition-item {
        padding: 20px;
    }

    .page-register__condition-heading {
        font-size: 1.3em;
    }

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

    .page-register__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }

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

@media (max-width: 480px) {
    .page-register__hero-section {
        height: 400px;
    }

    .page-register__hero-title {
        font-size: 1.8em;
    }

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

    .page-register__register-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

    .page-register__section-intro {
        font-size: 0.9em;
    }

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

    .page-register__value-heading {
        font-size: 1.2em;
    }

    .page-register__step-heading {
        font-size: 1.3em;
    }

    .page-register__step-image {
        width: 100%;
        height: auto;
    }

    .page-register__condition-heading {
        font-size: 1.2em;
    }

    .page-register__faq-question {
        font-size: 1em;
    }
}