.page-register {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-register__hero-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    background-color: #000000; /* Dark background for hero text contrast */
    color: #FFFFFF;
    text-align: center;
}

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

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

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

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

.page-register__hero-button,
.page-register__action-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.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-register__section-title {
    font-size: 2.5em;
    color: #000000; /* Main color for titles */
    text-align: center;
    margin: 60px 0 20px;
}

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

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

.page-register__value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-register__value-card {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-register__value-icon {
    width: 200px; /* Minimum size for content images */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

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

.page-register__steps-section {
    padding: 60px 20px;
    background-color: #F0F0F0;
}

.page-register__steps-list {
    max-width: 800px;
    margin: 0 auto 50px;
    list-style: none;
    padding: 0;
}

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

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

.page-register__step-content {
    text-align: left;
}

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

.page-register__step-text {
    color: #666666;
}

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

.page-register__conditions-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: disc;
    padding-left: 20px;
    color: #333333;
}

.page-register__condition-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-register__inline-link {
    color: #000000; /* Main color for inline links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-register__inline-link:hover {
    color: #FCBC45; /* Accent color on hover */
}

.page-register__faq-section {
    padding: 60px 20px;
    background-color: #F0F0F0;
}

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

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

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: background-color 0.3s ease;
}

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

.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;
    color: #555555;
    font-size: 1em;
}

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

/* Responsive adjustments */
@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__hero-title {
        font-size: 2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 15px;
    }
    .page-register__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-register__value-card {
        padding: 20px;
    }
    .page-register__value-icon {
        width: 180px;
        height: 120px;
    }
    .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-content {
        text-align: center;
    }
    .page-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-register__faq-answer {
        padding: 0 20px 15px;
    }
    /* Ensure content images do not overflow on mobile */
    .page-register__hero-image,
    .page-register__value-icon,
    .page-register__steps-list img {
        max-width: 100%;
        height: auto;
    }
    .page-register__value-icon {
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px;
        width: auto;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__hero-button,
    .page-register__action-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__value-cards {
        grid-template-columns: 1fr;
    }
}