.page-register {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-register__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: #0A0A0A; /* Background */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register__container--hero {
    display: flex;
    flex-direction: column; /* Image above content */
    align-items: center;
    gap: 30px;
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    order: 1;
}

.page-register__hero-image {
    width: 1200px; /* Display width */
    height: 675px; /* Display height */
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-register__hero-content {
    order: 2;
    text-align: center;
    max-width: 800px;
}

.page-register__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    color: #FFD36B; /* Glow */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-register__hero-description {
    font-size: 1.1rem;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__btn-hero {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #111111; /* Dark text on bright button for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-register__btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

/* General Section Styles */
.page-register__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #FFD36B; /* Glow */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

.page-register__section-description {
    font-size: 1rem;
    color: #FFF6D6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Section */
.page-register__form-section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background */
}

.page-register__registration-form {
    background-color: #111111; /* Card BG */
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid #3A2A12; /* Border */
}

.page-register__form-group {
    margin-bottom: 25px;
}

.page-register__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FFF6D6; /* Text Main */
    font-size: 1rem;
}

.page-register__form-input {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #3A2A12; /* Border */
    border-radius: 5px;
    background-color: #0A0A0A; /* Background */
    color: #FFF6D6; /* Text Main */
    font-size: 1rem;
    box-sizing: border-box;
}

.page-register__form-input::placeholder {
    color: rgba(255, 246, 214, 0.6);
}

.page-register__form-hint {
    font-size: 0.85rem;
    color: rgba(255, 246, 214, 0.7);
    margin-top: 5px;
    display: block;
}

.page-register__form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.page-register__checkbox-input {
    margin-right: 10px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    accent-color: #F2C14E; /* Accent color for checkbox */
}

.page-register__checkbox-label {
    font-size: 0.95rem;
    color: #FFF6D6; /* Text Main */
}

.page-register__link {
    color: #F2C14E; /* Main Color */
    text-decoration: none;
    font-weight: bold;
}

.page-register__link:hover {
    text-decoration: underline;
}

.page-register__btn-submit {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #111111; /* Dark text on bright button for contrast */
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-register__btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-register__login-prompt {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: #FFF6D6; /* Text Main */
}

.page-register__form-banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 40px;
    text-align: center;
}

.page-register__form-image {
    width: 800px; /* Display width */
    height: 600px; /* Display height */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

/* Benefits Section */
.page-register__benefits-section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background */
}

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

.page-register__benefit-card {
    background-color: #111111; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    border: 1px solid #3A2A12; /* Border */
    transition: transform 0.3s ease;
}

.page-register__benefit-card:hover {
    transform: translateY(-5px);
}

.page-register__benefit-image {
    width: 100%; /* Display width */
    height: 200px; /* Display height */
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-register__benefit-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Main Color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register__benefit-text {
    font-size: 0.95rem;
    color: #FFF6D6; /* Text Main */
}

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

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

.page-register__step-card {
    background-color: #111111; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    border: 1px solid #3A2A12; /* Border */
    position: relative;
}

.page-register__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #111111; /* Dark text for contrast */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

.page-register__step-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Main Color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register__step-text {
    font-size: 0.95rem;
    color: #FFF6D6; /* Text Main */
}

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

.page-register__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-register__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFF6D6; /* Text Main */
    cursor: pointer;
    background-color: #111111; /* Card BG */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

.page-register__faq-item summary::marker {
    display: none;
}

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

.page-register__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #F2C14E; /* Main Color */
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
    transform: rotate(45deg); /* Change + to X or rotate */
}

.page-register__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 0.95rem;
    color: #FFF6D6; /* Text Main */
    line-height: 1.6;
}

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

/* CTA Section */
.page-register__cta-section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background */
    text-align: center;
}

.page-register__container--cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-register__cta-content {
    text-align: center;
    max-width: 900px;
}

.page-register__btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.page-register__cta-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 30px;
}

.page-register__cta-image {
    width: 800px; /* Display width */
    height: 450px; /* Display height */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

/* Responsive styles for tablets and mobile */
@media (max-width: 1024px) {
    .page-register__container {
        padding: 0 15px;
    }

    .page-register__hero-image {
        width: 1000px; /* Adjust display width */
        height: 563px; /* Adjust display height (16:9) */
    }

    .page-register__form-image {
        width: 700px; /* Adjust display width */
        height: 525px; /* Adjust display height (4:3) */
    }
}