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

.page-register__hero-section {
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    padding: 80px 20px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-register__hero-container {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-register__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

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

.page-register__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for CTA */
    color: #000000; /* Dark text for bright button */
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

.page-register__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-register__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Overlay effect */
}

.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-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-register__value-section {
    background-color: #F8F8F8;
    padding: 60px 0;
}

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

.page-register__feature-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-register__feature-item:hover {
    transform: translateY(-10px);
}

.page-register__feature-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

.page-register__cta-button {
    display: block;
    width: fit-content;
    margin: 60px auto 0;
    background-color: #000000; /* Main color for CTA */
    color: #FFFFFF; /* White text for dark button */
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-register__step-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-register__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #FCBC45; /* Highlight color */
    color: #000000;
    font-size: 2em;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(252, 188, 69, 0.4);
}

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

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

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

.page-register__conditions-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto 0;
}

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

.page-register__faq-section {
    padding: 60px 0;
}

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

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

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    list-style: none; /* Remove default marker for summary */
}

.page-register__faq-question::-webkit-details-marker {
    display: none;
}

.page-register__faq-toggle {
    font-size: 1.5em;
    color: #FCBC45;
    transition: transform 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }
    .page-register__hero-description {
        font-size: 1.2em;
    }
    .page-register__section-title {
        font-size: 2.2em;
    }
    .page-register__content-area {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .page-register {
        padding-top: var(--header-offset, 80px);
    }
    .page-register__hero-section {
        padding: 60px 15px 30px;
    }
    .page-register__hero-title {
        font-size: 2.2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__hero-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-register__features-grid,
    .page-register__steps-list {
        grid-template-columns: 1fr;
    }
    .page-register__feature-item img {
        height: 200px;
    }
    .page-register__feature-title {
        font-size: 1.4em;
    }
    .page-register__step-title {
        font-size: 1.3em;
    }
    .page-register__condition-item,
    .page-register__faq-question,
    .page-register__faq-answer {
        font-size: 0.95em;
    }
    /* Ensure content area images are responsive and not too small */
    .page-register__content-area img,
    .page-register__features-grid img {
        max-width: 100%;
        height: auto;
    }
    .page-register__feature-item img {
        min-width: 200px;
        min-height: 200px;
    }
    .page-register__hero-image img {
        min-width: 200px;
        min-height: 200px;
    }
}

@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.6em;
    }
    .page-register__cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
}