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

.page-register__hero-section {
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-register__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.page-register__hero-content {
    flex: 1;
    text-align: left;
}

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

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

.page-register__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for bright button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

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

.page-register__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-register__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-register__section-title {
    font-size: 2.5em;
    color: #000000; /* Main color */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

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

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

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

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

.page-register__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-register__feature-description {
    color: #666666;
    font-size: 0.95em;
}

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

.page-register__registration-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-register__step-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    padding-top: 80px; /* Space for icon */
}

.page-register__step-icon {
    counter-increment: step-counter;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #FCBC45;
    color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-register__step-description a {
    color: #000000;
    text-decoration: underline;
}

.page-register__step-description a:hover {
    color: #FCBC45;
}

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

.page-register__cta-button--secondary {
    background-color: #000000;
    color: #FFFFFF;
}

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

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

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

.page-register__condition-item {
    background-color: #F8F8F8;
    border-left: 5px solid #000000; /* Main color accent */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.page-register__condition-description {
    color: #666666;
    font-size: 0.9em;
}

.page-register__condition-description a {
    color: #000000;
    text-decoration: underline;
}

.page-register__condition-description a:hover {
    color: #FCBC45;
}

.page-register__final-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95em;
    color: #555555;
}

.page-register__final-note a {
    color: #000000;
    text-decoration: underline;
}

.page-register__final-note a:hover {
    color: #FCBC45;
}

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

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

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

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

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

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

.page-register__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    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;
    color: #555555;
    font-size: 1em;
    line-height: 1.7;
}

.page-register__faq-answer p {
    margin-top: 0;
    margin-bottom: 10px;
}

.page-register__faq-answer a {
    color: #000000;
    text-decoration: underline;
}

.page-register__faq-answer a:hover {
    color: #FCBC45;
}

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

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

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

.page-register__cta-button--primary {
    background-color: #FCBC45;
    color: #000000;
    margin: 0 10px;
}

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

.page-register__cta-button--outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    margin: 0 10px;
}

.page-register__cta-button--outline:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__cta-final-title {
        font-size: 2.2em;
    }
    .page-register__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-register__hero-content {
        text-align: center;
    }
    .page-register__hero-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
        padding-bottom: 40px;
    }
    .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: 1em;
    }
    .page-register__features-grid,
    .page-register__registration-steps,
    .page-register__condition-list {
        grid-template-columns: 1fr;
    }
    .page-register__step-item {
        padding-top: 70px;
    }
    .page-register__step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }
    .page-register__feature-title,
    .page-register__step-title,
    .page-register__condition-title {
        font-size: 1.3em;
    }
    .page-register__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-register__faq-answer {
        padding: 0 20px 15px;
    }
    .page-register__cta-final-title {
        font-size: 1.8em;
    }
    .page-register__cta-final-description {
        font-size: 1em;
    }
    .page-register__cta-button--primary,
    .page-register__cta-button--outline {
        display: block;
        margin: 15px auto;
        width: fit-content;
    }
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__section-title {
        font-size: 1.6em;
    }
    .page-register__cta-final-title {
        font-size: 1.6em;
    }
    .page-register__cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}