.page-register {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #f8f8f8; /* Light background for contrast with dark text */
    color: #333333; /* Dark text for readability */
}

.page-register__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-register__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-register__hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-register__hero-content {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
    font-weight: 700;
}

.page-register__tagline {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.5;
}

.page-register__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2E36;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

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

.page-register__cta-button--large {
    padding: 18px 35px;
    font-size: 1.4em;
}

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

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

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

.page-register__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.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: 40px;
}

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

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

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

.page-register__value-heading {
    font-size: 1.6em;
    color: #0A2E36;
    margin-bottom: 15px;
}

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

.page-register__secondary-cta {
    display: block;
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
    color: #0A2E36;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-register__secondary-cta:hover {
    color: #FFD700;
}

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

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

.page-register__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    position: relative;
    counter-increment: step-counter;
    padding-left: 80px;
}

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

.page-register__step-heading {
    font-size: 1.8em;
    color: #0A2E36;
    margin-bottom: 10px;
}

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

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

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

.page-register__condition-item {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #333333;
}

.page-register__condition-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0A2E36;
    font-weight: bold;
    font-size: 1.2em;
}

.page-register__text-link {
    color: #0A2E36;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
    margin-top: 30px;
}

.page-register__text-link:hover {
    color: #FFD700;
}

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

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

.page-register__faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    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;
    color: #0A2E36;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: background-color 0.3s ease;
}

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

.page-register__faq-toggle {
    font-size: 1.5em;
    color: #FFD700;
    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;
    line-height: 1.6;
    color: #555555;
}

.page-register__cta-bottom-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0A2E36;
    color: #ffffff;
}

.page-register__cta-bottom-section .page-register__section-title {
    color: #FFD700;
}

.page-register__cta-bottom-section .page-register__section-intro {
    color: #f0f0f0;
    margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-register__main-title {
        font-size: 2.8em;
    }
    .page-register__tagline {
        font-size: 1.1em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__value-icon {
        width: 220px;
        height: 165px;
    }
}

@media (max-width: 768px) {
    .page-register {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-register__hero-section {
        min-height: 400px;
        padding: 30px 15px;
    }
    .page-register__main-title {
        font-size: 2em;
    }
    .page-register__tagline {
        font-size: 1em;
    }
    .page-register__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
    .page-register__container {
        padding: 30px 15px;
    }
    .page-register__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .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%; /* Ensure images don't overflow */
        max-width: 300px; /* Example max-width, adjust as needed */
        height: auto;
    }
    .page-register__value-heading {
        font-size: 1.4em;
    }
    .page-register__step-item {
        padding-left: 65px;
    }
    .page-register__step-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        left: 20px;
    }
    .page-register__step-heading {
        font-size: 1.5em;
    }
    .page-register__condition-item, .page-register__faq-question, .page-register__faq-answer p {
        font-size: 0.95em;
    }
    .page-register__faq-question {
        padding: 15px 20px;
    }
    .page-register__faq-answer {
        padding: 0 20px 15px 20px;
    }

    /* Ensure all content images in .page-register are responsive and not too small */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
    .page-register__value-item img,
    .page-register__hero-image {
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-register__main-title {
        font-size: 1.8em;
    }
    .page-register__tagline {
        font-size: 0.9em;
    }
    .page-register__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__value-icon {
        width: 100%;
        max-width: 250px; /* Further restrict max-width for very small screens */
        height: auto;
    }
    .page-register__value-heading {
        font-size: 1.2em;
    }
    .page-register__step-heading {
        font-size: 1.3em;
    }
    .page-register__condition-item, .page-register__faq-question, .page-register__faq-answer p {
        font-size: 0.9em;
    }
}