.page-register {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px);
}

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

.page-register__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Adjust as needed */
    text-align: center;
    color: #ffffff;
    background-color: #1A202C;
}

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

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

.page-register__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-register__hero-button,
.page-register__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-register__section-title {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-register__section-intro {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #555555;
}

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section {
    padding: 80px 0;
}

.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: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-register__value-card-image {
    width: 100%;
    height: 267px; /* Maintain aspect ratio for 600x400 source */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-register__value-card-title {
    font-size: 1.8em;
    color: #1A202C;
    margin-bottom: 15px;
}

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

.page-register__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-register__step-item {
    background-color: #ffffff;
    border-left: 5px solid #FFD700;
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    counter-increment: step-counter;
}

.page-register__step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1A202C;
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-register__step-title {
    font-size: 1.6em;
    color: #1A202C;
    margin-bottom: 10px;
    padding-left: 30px; /* Offset for number */
}

.page-register__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    padding-left: 30px; /* Offset for number */
}

.page-register__action-area {
    text-align: center;
    margin-top: 60px;
}

.page-register__button--primary {
    background-color: #1A202C;
    color: #FFD700;
}

.page-register__button--primary:hover {
    background-color: #333d4f;
}

.page-register__conditions-list {
    list-style: disc;
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding-left: 25px;
}

.page-register__condition-item {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555555;
}

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

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

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

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

.page-register__faq-item[open] .page-register__faq-question {
    background-color: #FFD700;
    color: #1A202C;
    border-bottom: 1px solid #e6c200;
}

.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: 20px 25px;
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    border-top: 1px solid #e0e0e0;
}

.page-register__faq-item:not([open]) .page-register__faq-answer {
    display: none;
}

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

@media (max-width: 768px) {
    .page-register__hero-title {
        font-size: 2.5em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__hero-button,
    .page-register__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__section-intro {
        font-size: 0.95em;
    }
    .page-register__value-cards {
        grid-template-columns: 1fr;
    }
    .page-register__step-title {
        font-size: 1.4em;
    }
    .page-register__step-description {
        font-size: 0.95em;
    }
    .page-register__condition-item,
    .page-register__faq-question,
    .page-register__faq-answer {
        font-size: 0.95em;
    }
    .page-register__hero-image img,
    .page-register__value-card-image img,
    .page-register__steps-section img,
    .page-register__conditions-section img,
    .page-register__faq-section img {
        max-width: 100%;
        height: auto;
    }
    .page-register__hero-image,
    .page-register__value-card-image {
        height: auto; /* Allow image to scale */
    }
    .page-register__faq-answer p {
        max-width: 100%;
        height: auto;
    }
    .page-register__value-card-image,
    .page-register__hero-image {
        min-width: 200px;
        min-height: 200px;
    }
    .page-register__hero-section {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 2em;
    }
    .page-register__hero-description {
        font-size: 0.9em;
    }
    .page-register__hero-button,
    .page-register__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__step-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        left: -15px;
    }
    .page-register__step-title,
    .page-register__step-description {
        padding-left: 20px;
    }
}