.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); /* Ensures content is not hidden by fixed header */
}

.page-register__hero-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

.page-register__hero-title {
    font-size: 2.8em;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

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

.page-register__hero-image-wrapper {
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-register__section-title {
    font-size: 2.2em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.page-register__value-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.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: #fefefe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-register__value-icon {
    width: 200px; /* Minimum 200px */
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

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

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

.page-register__steps-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px;
}

.page-register__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.page-register__steps-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.page-register__steps-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    font-size: 1.8em;
    font-weight: bold;
    color: #FCBC45;
    background-color: #fdf5e6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

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

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

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

.page-register__cta-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.page-register__cta-button:hover {
    background-color: #e0a53d;
}

.page-register__conditions-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.page-register__conditions-content {
    color: #666666;
}

.page-register__conditions-text {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-register__conditions-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.page-register__conditions-item {
    margin-bottom: 10px;
}

.page-register__conditions-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

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

.page-register__faq-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px;
}

.page-register__faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-register__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-register__faq-question {
    display: block;
    padding: 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    position: relative;
    user-select: none;
    background-color: #fefefe;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

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

.page-register__faq-item[open] .page-register__faq-question {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.page-register__faq-toggle {
    position: absolute;
    right: 20px;
    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 20px 20px 20px;
    color: #666666;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-register {
        padding-top: var(--header-offset, 80px);
    }

    .page-register__hero-section {
        padding: 40px 15px;
    }

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

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

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

    .page-register__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-register__value-section,
    .page-register__steps-section,
    .page-register__conditions-section,
    .page-register__faq-section {
        margin: 40px auto;
        padding: 20px 15px;
    }

    .page-register__value-item {
        padding: 20px;
    }

    .page-register__value-icon {
        width: 200px;
        height: auto;
    }

    .page-register__value-heading {
        font-size: 1.3em;
    }

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

    .page-register__steps-item::before {
        margin-bottom: 15px;
    }

    .page-register__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-register__faq-question {
        font-size: 1em;
        padding: 15px 50px 15px 15px;
    }

    .page-register__faq-toggle {
        right: 15px;
    }
    
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}

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

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

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

    .page-register__value-icon {
        width: 200px;
        height: auto;
    }

    .page-register__steps-heading {
        font-size: 1.4em;
    }
}