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

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

.page-register__hero-section {
    background-color: #0A192F; /* Main brand color */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-register__hero-content {
    max-width: 800px;
}

.page-register__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Accent color for title */
}

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

.page-register__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-register__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for CTA */
    color: #0A192F; /* Dark text on gold button */
    padding: 15px 30px;
    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 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-register__value-section, .page-register__steps-section, .page-register__conditions-section, .page-register__faq-section, .page-register__cta-final-section {
    padding: 60px 0;
    background-color: #fcfcfc;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.page-register__feature-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-register__feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-register__feature-title {
    font-size: 1.5em;
    color: #0A192F;
    margin-bottom: 15px;
}

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

.page-register__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #e0e0e0;
    border-radius: 8px;
}

.page-register__cta-text {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #0A192F;
    font-weight: bold;
}

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

.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.08);
}

.page-register__step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6em;
    font-weight: bold;
    margin-right: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-register__step-content {
    flex-grow: 1;
}

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

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

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

.page-register__condition-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-register__condition-title {
    font-size: 1.5em;
    color: #0A192F;
    margin-top: 0;
    margin-bottom: 10px;
}

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

.page-register__faq-list {
    max-width: 900px;
    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.08);
    overflow: hidden;
}

.page-register__faq-question {
    background-color: #FFD700;
    color: #0A192F;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.page-register__faq-icon {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-register__faq-item.is-active .page-register__faq-icon {
    transform: rotate(45deg);
}

.page-register__faq-answer {
    padding: 0 25px;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-register__faq-item.is-active .page-register__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-register__faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #666666;
}

.page-register__cta-final-section {
    background-color: #0A192F;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-register__cta-final-section .page-register__section-title {
    color: #FFD700;
}

.page-register__cta-final-section .page-register__section-intro {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-register__login-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-register__login-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

    .page-register__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        padding: 60px 20px 30px;
        flex-direction: column;
        gap: 30px;
    }

    .page-register__hero-title {
        font-size: 2.2em;
    }

    .page-register__hero-description {
        font-size: 1.1em;
    }

    .page-register__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-register__section-title {
        font-size: 1.8em;
    }

    .page-register__section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }

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

    .page-register__features-grid {
        grid-template-columns: 1fr;
    }

    .page-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-register__step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    /* Ensure content images are responsive and do not overflow */
    .page-register img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-register__hero-image img {
        max-width: 100%;
        height: auto;
    }
    .page-register__feature-item img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }

    .page-register__hero-description {
        font-size: 0.95em;
    }

    .page-register__section-title {
        font-size: 1.5em;
    }

    .page-register__feature-title {
        font-size: 1.3em;
    }

    .page-register__step-title {
        font-size: 1.4em;
    }

    .page-register__condition-title {
        font-size: 1.3em;
    }

    .page-register__faq-question {
        font-size: 1em;
    }
    .page-register__cta-text {
        font-size: 1.1em;
    }
}