/* style/register.css */
.page-register {
    color: #333333; /* Dark text on 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__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-register__hero-section {
    background-color: #FFFFFF;
    text-align: center;
    padding: 80px 0 0; /* Adjusted padding to accommodate image */
    position: relative;
    overflow: hidden;
}

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

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

.page-register__hero-description {
    font-size: 1.3em;
    color: #333333;
    margin-bottom: 40px;
}

.page-register__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: -80px; /* Overlap with hero text for visual effect */
    position: relative;
    z-index: 1;
    min-width: 200px;
    min-height: 200px;
}

.page-register__register-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-register__register-button--secondary {
    margin-top: 30px;
    font-size: 1.1em;
    padding: 12px 25px;
}

.page-register__register-button--large {
    font-size: 1.5em;
    padding: 20px 40px;
    margin-top: 40px;
}

.page-register__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 60px;
}

.page-register__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__value-section,
.page-register__steps-section,
.page-register__terms-section,
.page-register__faq-section,
.page-register__cta-section,
.page-register__more-info-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

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

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

.page-register__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-register__feature-icon {
    width: 100%; /* Ensure images fill their container */
    height: auto;
    max-width: 250px; /* Max width for feature icons */
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.page-register__feature-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

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

.page-register__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 50px;
}

.page-register__step-item {
    position: relative;
    padding: 30px 0 30px 80px;
    border-left: 3px solid #FCBC45;
    margin-bottom: 40px;
}

.page-register__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: -25px;
    top: 25px;
    width: 50px;
    height: 50px;
    background-color: #FCBC45;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

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

.page-register__terms-section {
    background-color: #f8f8f8;
}

.page-register__terms-list {
    list-style: disc;
    padding-left: 40px;
    margin-top: 30px;
    font-size: 1.1em;
    color: #333333;
}

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

.page-register__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FCBC45;
    margin-top: 30px;
}

.page-register__button--tertiary {
    background-color: transparent;
    color: #FCBC45;
}

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

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

.page-register__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    list-style: none; /* Hide default marker */
}

.page-register__faq-question::-webkit-details-marker {
    display: none;
}

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

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

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

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

.page-register__cta-section .page-register__section-title,
.page-register__cta-section .page-register__section-description {
    color: #FFFFFF;
}

.page-register__more-info-section {
    background-color: #f8f8f8;
}

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

.page-register__info-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.page-register__info-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-register__info-title a:hover {
    color: #FCBC45;
}

.page-register__info-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

.page-register__button--text {
    background-color: transparent;
    color: #FCBC45;
    border: none;
    text-decoration: underline;
    padding: 0;
    font-size: 1em;
}

.page-register__button--text:hover {
    color: #000000;
    background-color: transparent;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }
    .page-register__hero-description {
        font-size: 1.2em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__feature-title {
        font-size: 1.4em;
    }
    .page-register__step-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        padding-top: 60px;
    }
    .page-register__hero-title {
        font-size: 2.2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__hero-image {
        margin-top: -40px;
    }
    .page-register__register-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page-register__section-title {
        font-size: 1.8em;
        padding-top: 40px;
    }
    .page-register__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-register__features-grid,
    .page-register__info-grid {
        grid-template-columns: 1fr;
    }
    .page-register__step-item {
        padding-left: 60px;
    }
    .page-register__step-item::before {
        left: -20px;
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
    .page-register__step-title {
        font-size: 1.4em;
    }
    .page-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-register__faq-answer {
        padding: 0 20px 15px;
    }
    /* Ensure content images do not overflow */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
    .page-register__feature-icon {
        max-width: 100%;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__hero-description {
        font-size: 0.9em;
    }
    .page-register__register-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__terms-list {
        padding-left: 20px;
    }
}