.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); /* Fixed header offset */
}

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

/* Hero Section */
.page-register__hero-section {
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF; /* Light text for dark background */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

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

.page-register__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight with accent color */
    font-weight: bold;
}

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

.page-register__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-register__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
}

.page-register__hero-button--register {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for light button */
    border: 2px solid #FCBC45;
}

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

.page-register__hero-button--login {
    background-color: #FFFFFF; /* Register button color */
    color: #000000; /* Dark text for light button */
    border: 2px solid #FFFFFF;
}

.page-register__hero-button--login:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-register__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Section Titles */
.page-register__section-title {
    font-size: 2.5em;
    color: #000000; /* Dark text for light background */
    text-align: center;
    margin-bottom: 50px;
    margin-top: 60px;
    font-weight: bold;
}

/* Value Section */
.page-register__value-section {
    background-color: #FFFFFF; /* Light background */
    padding: 60px 0;
}

.page-register__value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-register__value-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

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

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

.page-register__value-text {
    font-size: 1em;
    color: #555555;
}

.page-register__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-register__button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-register__button--register-bottom {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-register__button--register-bottom:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

/* Steps Section */
.page-register__steps-section {
    background-color: #f0f0f0; /* Light background */
    padding: 60px 0;
}

.page-register__steps-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-register__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    counter-reset: step-counter;
}

.page-register__step-item {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px; /* Space for step number */
}

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

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

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

.page-register__steps-image {
    flex: 1;
    text-align: center;
}

.page-register__steps-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Conditions Section */
.page-register__conditions-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.page-register__conditions-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

.page-register__conditions-intro {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 30px;
    flex: 1;
}

.page-register__conditions-list {
    list-style: disc;
    padding-left: 25px;
    color: #333333;
    flex: 2;
}

.page-register__conditions-item {
    margin-bottom: 15px;
    font-size: 1em;
}

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

.page-register__conditions-image {
    flex: 1;
    text-align: center;
}

.page-register__conditions-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* FAQ Section */
.page-register__faq-section {
    background-color: #f0f0f0;
    padding: 60px 0;
}

.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 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-register__faq-question {
    background-color: #FCBC45; /* Question background */
    color: #000000; /* Question text color */
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
    padding-right: 50px; /* Space for arrow */
}

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

.page-register__faq-question::after {
    content: '+';
    font-size: 1.5em;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.page-register__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg); /* No rotation for minus */
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-register__hero-title {
        font-size: 2.5em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__steps-layout,
    .page-register__conditions-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-register__steps-image,
    .page-register__conditions-image {
        order: -1; /* Image above text on smaller screens */
    }
    .page-register__conditions-list {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        padding: 60px 15px;
    }
    .page-register__hero-title {
        font-size: 2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__hero-buttons {
        flex-direction: column;
    }
    .page-register__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .page-register__value-grid {
        grid-template-columns: 1fr;
    }
    .page-register__value-item img,
    .page-register__steps-image img,
    .page-register__conditions-image img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size */
        min-height: 200px; /* Enforce min size */
    }
    .page-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
        padding-right: 45px;
    }
    .page-register__faq-question::after {
        right: 20px;
    }
    .page-register__faq-answer {
        padding: 0 20px;
    }

    /* Ensure content area images do not overflow */
    .page-register {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__hero-buttons {
        flex-direction: column;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__value-heading {
        font-size: 1.3em;
    }
    .page-register__step-heading {
        font-size: 1.2em;
    }
}