.page-register {
    background-color: #0D0E12; /* Background color */
    color: #FFF3E6; /* Text Main color */
    padding-bottom: 40px; /* Add some padding at the bottom */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

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

/* Hero Section */
.page-register__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background-color: #17191F; /* Card BG */
    border-bottom: 1px solid #A84F0C; /* Border color */
}

.page-register__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
    max-width: 1920px; /* Max width for the banner image container */
}

.page-register__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* 1920x600 */
    object-fit: cover;
    object-position: center;
    filter: none; /* Ensure no grayscale */
}

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

.page-register__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFB04D; /* Glow color for emphasis */
    margin-bottom: 15px;
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* Adjusted for H1, not too big on mobile */
}

.page-register__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF3E6; /* Text Main */
}

.page-register__cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-register__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

/* Section Titles */
.page-register__section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    text-align: center;
    color: #FFB04D; /* Glow color */
    margin-top: 50px;
    margin-bottom: 40px;
    padding: 0 15px;
    position: relative;
}
.page-register__section-title::before,
.page-register__section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px; /* Shorter lines for mobile */
    height: 2px;
    background-color: #A84F0C; /* Border color */
    transform: translateY(-50%);
}
.page-register__section-title::before {
    left: 0;
    margin-left: 15px;
}
.page-register__section-title::after {
    right: 0;
    margin-right: 15px;
}

/* Steps Section */
.page-register__steps-section {
    padding: 40px 0;
}

.page-register__steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mobile default */
    gap: 30px;
    padding: 0 15px;
}

.page-register__step-card {
    background-color: #17191F; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #A84F0C; /* Border color */
}

.page-register__step-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    filter: none; /* Ensure no grayscale */
}

.page-register__step-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 10px;
}

.page-register__step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main */
}

/* Advantages Section */
.page-register__advantages-section {
    padding: 40px 0 60px;
}

.page-register__advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mobile default */
    gap: 25px;
    padding: 0 15px;
}

.page-register__advantage-item {
    background-color: #17191F; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #A84F0C; /* Border color */
    text-align: center;
}

.page-register__advantage-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
    color: #FFB04D; /* Glow color */
}

.page-register__advantage-heading {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 10px;
}

.page-register__advantage-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main */
}

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

.page-register__secondary-cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-register__secondary-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

/* FAQ Section */
.page-register__faq-section {
    padding: 40px 0 60px;
}

.page-register__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
}

.page-register__faq-item {
    background-color: #17191F; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #A84F0C; /* Border color */
}

.page-register__faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 10px;
    cursor: pointer; /* Indicate clickable */
}

.page-register__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main */
    display: block; /* Default to visible, JS will toggle if accordion is active */
}

/* Responsive adjustments */
@media (min-width: 550px) {
    .page-register__section-title::before {
        left: 50%;
        margin-left: -150px;
        width: 100px;
    }
    .page-register__section-title::after {
        right: 50%;
        margin-right: -150px;
        width: 100px;
    }
}

@media (min-width: 768px) {
    .page-register__steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .page-register__advantage-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-register__hero-content {
        padding: 40px 15px;
    }
    .page-register__main-title {
        font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    }
    .page-register__section-title::before,
    .page-register__section-title::after {
        width: 150px; /* Longer lines for desktop */
    }
    .page-register__section-title::before {
        left: 50%;
        margin-left: -250px; /* Adjust based on title width */
    }
    .page-register__section-title::after {
        right: 50%;
        margin-right: -250px; /* Adjust based on title width */
    }
}

@media (min-width: 1024px) {
    .page-register__advantage-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Ensure images do not cause horizontal scroll on mobile */
@media (max-width: 768px) {
    .page-register__steps-card img,
    .page-register__advantage-item img {
        max-width: 100%;
        height: auto;
    }
}

/* CSS to prevent content area images from being smaller than 200px */
.page-register img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensures images fill their min-size without stretching */
    filter: none; /* Ensure no filter on images */
}