.page-register {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-register__hero-section {
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
    background-color: #FFFFFF;
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

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

.page-register__hero-title {
    font-size: 3em;
    color: #000000; /* Main brand color for title */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-register__hero-description {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-register__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%); /* Light grayscale to keep it subtle */
}

.page-register__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.page-register__cta-button--primary {
    background-color: #000000; /* Main brand color for primary button background */
    color: #FFFFFF; /* White text for contrast */
}

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

.page-register__cta-button--secondary {
    background-color: transparent;
    color: #000000; /* Dark text for secondary button */
    border: 2px solid #000000;
}

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

.page-register__cta-button--wide {
    min-width: 280px;
}

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

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__cta-bottom-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-register__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-register__feature-item {
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register__feature-icon {
    width: 200px; /* Min size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

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

.page-register__feature-text {
    color: #666666;
    font-size: 0.95em;
}

.page-register__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 30px;
}

.page-register__step-item {
    background-color: #f9f9f9;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-left: 5px solid #000000;
    border-radius: 8px;
    position: relative;
    padding-left: 80px;
}

.page-register__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000000;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: bold;
}

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

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

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

.page-register__condition-item {
    background-color: #f9f9f9;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #FCBC45; /* Login color for accent */
    font-size: 1em;
    color: #333333;
}

.page-register__condition-item strong {
    color: #000000;
}

.page-register__faq-container {
    margin-top: 30px;
}

.page-register__faq-item {
    background-color: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
}

.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: #FCBC45; /* Login color for FAQ question background */
    color: #000000; /* Dark text for contrast on FCBC45 */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.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;
    color: #555555;
    background-color: #FFFFFF;
    border-top: 1px solid #eee;
}

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

.page-register__cta-bottom-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 768px) {
    .page-register {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
    .page-register__hero-title {
        font-size: 2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__section-description {
        font-size: 0.95em;
    }
    .page-register__cta-button {
        padding: 12px 20px;
        font-size: 1em;
        margin: 5px;
    }
    .page-register__features-grid {
        grid-template-columns: 1fr;
    }
    .page-register__step-item {
        padding-left: 60px;
    }
    .page-register__step-item::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
        left: 15px;
    }
    .page-register__step-title {
        font-size: 1.2em;
    }
    .page-register__condition-item,
    .page-register__faq-question,
    .page-register__faq-answer {
        font-size: 0.95em;
    }
    /* Mobile specific image constraint */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
    .page-register__hero-image {
        max-width: none;
        width: 100%;
        height: 100%;
    }
}