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

.page-register__hero-section {
    background-color: #0A192F; /* Primary dark background for hero */
    color: #ffffff;
    padding-top: var(--header-offset, 120px);
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-register__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-register__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

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

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__cta-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

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

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

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

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

.page-register__benefit-card {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-register__benefit-icon {
    width: 250px; /* Min width 200px */
    height: 187px; /* Min height 200px, adjust aspect ratio if needed */
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

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

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

.page-register__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-register__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

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

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

.page-register__cta-button--bottom {
    margin-top: 60px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

.page-register__condition-item {
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333333;
}

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

.page-register__conditions-note {
    text-align: center;
    margin-top: 30px;
    font-size: 1em;
    color: #555555;
}

.page-register__conditions-note a {
    color: #0A192F;
    text-decoration: none;
    font-weight: bold;
}

.page-register__conditions-note a:hover {
    text-decoration: underline;
}

.page-register__faq-list {
    margin-top: 40px;
}

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

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

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

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

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

.page-register__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: #555555;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

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

.page-register__cta-section {
    background-color: #0A192F; /* Primary dark background */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-register__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-register__cta-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-register__cta-button--final {
    background-color: #FFD700;
    color: #0A192F;
    padding: 18px 45px;
    font-size: 1.2em;
    border: 2px solid #FFD700;
}

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

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

@media (max-width: 768px) {
    .page-register__hero-section {
        padding-top: var(--header-offset, 120px);
        padding-bottom: 60px;
    }
    .page-register__hero-title {
        font-size: 2.2em;
    }
    .page-register__hero-description {
        font-size: 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: 0.95em;
    }
    .page-register__benefits-grid,
    .page-register__registration-steps {
        grid-template-columns: 1fr;
    }
    .page-register__benefit-icon {
        width: 200px; /* Ensure min-width 200px */
        height: 150px; /* Ensure min-height 200px, adjust aspect ratio */
    }
    .page-register__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-register__faq-answer {
        padding: 15px;
    }
    .page-register__cta-title {
        font-size: 2em;
    }
    .page-register__cta-text {
        font-size: 1em;
    }
    .page-register__cta-button--final {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    /* Ensure content images do not overflow */
    .page-register__hero-image,
    .page-register__benefit-icon,
    .page-register__content-wrapper img {
        max-width: 100%;
        height: auto;
    }
    .page-register__content-wrapper {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__cta-title {
        font-size: 1.8em;
    }
    .page-register__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
}