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

.page-register__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #FFFFFF;
    text-align: center;
    padding-bottom: 60px;
    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;
    color: #000000;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-register__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for Register button as per prompt */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.page-register__hero-button:hover {
    background-color: #e0a53b;
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-register__value-section {
    background-color: #F8F8F8;
    padding: 60px 0;
}

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

.page-register__value-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-register__value-card-icon {
    width: 250px;
    height: 187px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-register__value-card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-register__steps-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-register__step-item {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

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

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

.page-register__steps-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 40px;
}

.page-register__steps-button:hover {
    background-color: #e0a53b;
}

.page-register__conditions-section {
    background-color: #F8F8F8;
    padding: 60px 0;
}

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

.page-register__conditions-item {
    background-color: #FFFFFF;
    border-left: 5px solid #FCBC45;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-register__conditions-image {
    width: 600px;
    height: 450px;
    object-fit: cover;
    display: block;
    margin: 50px auto 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-register__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-register__faq-items {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__faq-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-register__faq-question {
    display: block;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: background-color 0.3s ease;
}

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

.page-register__faq-toggle {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    color: #FCBC45;
    transition: transform 0.3s ease;
}

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

.page-register__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: #555555;
    line-height: 1.8;
}

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

.page-register__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

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

.page-register__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-register__cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 15px 20px;
}

.page-register__button--register {
    background-color: #FCBC45;
    color: #FFFFFF;
}

.page-register__button--register:hover {
    background-color: #e0a53b;
}

.page-register__button--download {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-register__button--download:hover {
    background-color: #E0E0E0;
    border-color: #E0E0E0;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__value-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-register__conditions-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-register {
        padding-top: var(--header-offset, 120px); /* Ensure mobile content is not hidden */
    }
    .page-register__hero-title {
        font-size: 2.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__value-card-title {
        font-size: 1.5em;
    }
    .page-register__step-title {
        font-size: 1.3em;
    }
    .page-register__faq-question {
        font-size: 1.1em;
    }
    .page-register__cta-title {
        font-size: 2.2em;
    }
    .page-register__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 0 10px 15px;
    }
    /* Mobile image constraint */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
    .page-register__value-card-icon, .page-register__conditions-image {
        width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 150px; /* Maintain aspect ratio or adjust as needed */
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.6em;
    }
    .page-register__value-cards, .page-register__steps-list {
        grid-template-columns: 1fr;
    }
    .page-register__cta-title {
        font-size: 1.8em;
    }
    .page-register__cta-button {
        display: block;
        width: calc(100% - 40px);
        margin: 15px auto;
    }
}