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

.page-register__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #000000; /* Main dark background for hero */
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.page-register__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.page-register__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #FFFFFF;
}

.page-register__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-register__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for primary action */
    color: #000000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-register__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-register__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-register__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.page-register__section-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

.page-register__value-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.page-register__value-card:hover {
    transform: translateY(-10px);
}

.page-register__value-card-icon {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-width: 400px; /* Ensure max-width is not too small */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

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

.page-register__call-to-action {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-register__button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-register__button--secondary {
    background-color: #FCBC45;
    color: #000000;
}

.page-register__button--secondary:hover {
    background-color: #e0a53b;
}

.page-register__steps-section {
    padding: 60px 20px;
}

.page-register__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-register__step-item {
    background-color: #FFFFFF;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 70px;
}

.page-register__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: #000000;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
}

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

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

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

.page-register__conditions-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.page-register__condition-item {
    background-color: #FFFFFF;
    border-left: 5px solid #FCBC45;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1em;
    color: #333333;
    line-height: 1.6;
}

.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 {
    padding: 60px 20px;
}

.page-register__faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

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

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee;
    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;
    font-weight: 700;
    color: #FCBC45;
    margin-left: 15px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 3em;
    }
    .page-register__hero-description {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-register__hero-title {
        font-size: 2.5em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__hero-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__value-cards {
        grid-template-columns: 1fr;
    }
    .page-register__value-card-icon {
        max-width: 100%; /* Ensure images scale correctly */
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-register__steps-list {
        grid-template-columns: 1fr;
    }
    .page-register__button {
        width: 100%;
        max-width: 300px;
    }
    .page-register__call-to-action {
        flex-direction: column;
        align-items: center;
    }
    .page-register__hero-section {
        padding-bottom: 40px;
    }
    /* Mobile image constraint */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
    .page-register__value-card-icon,
    .page-register__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 2em;
    }
    .page-register__hero-description {
        font-size: 0.9em;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-register__faq-answer {
        padding: 10px 20px 20px;
    }
}