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

.page-register__hero-section {
    padding-top: var(--header-offset, 120px);
    position: relative;
    text-align: center;
    overflow: hidden;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

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

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

.page-register__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #F0F0F0;
}

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

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

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

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

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

.page-register__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
}

.page-register__value-section {
    background-color: #f8f8f8;
}

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

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

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

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

.page-register__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

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

.page-register__steps-section {
    background-color: #FFFFFF;
}

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

.page-register__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: #fcfcfc;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-register__step-number {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-register__step-title {
    font-size: 1.6em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

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

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

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

.page-register__conditions-section {
    background-color: #f8f8f8;
}

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

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

.page-register__read-more-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #000000;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s ease;
}

.page-register__read-more-link:hover {
    color: #FCBC45;
}

.page-register__faq-section {
    background-color: #FFFFFF;
}

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

.page-register__faq-item {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-register__faq-item[open] {
    background-color: #f0f0f0;
}

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

.page-register__faq-item[open] .page-register__faq-question {
    background-color: #e0e0e0;
    border-bottom-color: #d0d0d0;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__value-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        min-height: 400px;
        padding: 40px 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-area {
        padding: 40px 15px;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__section-description {
        font-size: 0.95em;
    }
    .page-register__value-cards {
        grid-template-columns: 1fr;
    }
    .page-register__value-icon {
        width: 300px; /* Minimum 200px */
        height: 225px; /* Maintain aspect ratio */
    }
    .page-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .page-register__step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-register__step-title {
        font-size: 1.4em;
    }
    .page-register__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-register__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-register__faq-answer {
        padding: 0 20px 15px 20px;
    }
    /* Ensure all images within .page-register are responsive and don't overflow */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
    .page-register__value-icon {
        max-width: 100%;
        height: auto;
    }
    .page-register__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__hero-description {
        font-size: 0.9em;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__value-icon {
        width: 250px; /* Minimum 200px */
        height: 187px; /* Maintain aspect ratio */
    }
    .page-register__step-title {
        font-size: 1.2em;
    }
}