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

/* Container for content */
.page-register__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Section titles */
.page-register__section-title {
    font-size: 32px;
    font-weight: 700;
    color: #E53935; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-register__section-title--white {
    color: #ffffff;
}

.page-register__subsection-title {
    font-size: 24px;
    font-weight: 700;
    color: #E53935; /* Primary color */
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.page-register__subsection-title--white {
    color: #ffffff;
}

.page-register__checklist {
    list-style: none;
    padding: 0;
    margin: 30px auto 0;
    max-width: 800px;
}
.page-register__checklist li {
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #FF5A4F;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
}
.page-register__checklist li p {
    margin: 0;
    color: #ffffff;
}

/* Hero Section */
.page-register__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, assuming body handles header offset */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Brand gradient */
    overflow: hidden;
}

.page-register__hero-image-wrap {
    width: 100%;
    max-height: 675px; /* Max height for hero image */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default cover for desktop */
}

.page-register__hero-content {
    max-width: 900px;
    padding: 0 15px;
    color: #ffffff;
}

.page-register__hero-title {
    font-size: clamp(28px, 4vw, 48px); /* H1 clamp for responsiveness */
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-register__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-register__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%; /* Ensure container takes full width for mobile adaptation */
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

/* Buttons */
.page-register__btn-primary,
.page-register__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    max-width: 100%; /* For responsive buttons */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-register__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button custom color */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-register__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

.page-register__btn-secondary {
    background: #ffffff;
    color: #E53935; /* Primary color */
    border: 2px solid #E53935;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-register__cta-buttons--center {
    justify-content: center;
}

/* Intro Section */
.page-register__intro-section {
    padding: 60px 0;
}

.page-register__text-block {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.page-register__text-block--white {
    color: #f0f0f0;
}

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

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

.page-register__step-card {
    background: #ffffff; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
}

.page-register__step-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-register__step-title {
    font-size: 22px;
    font-weight: 700;
    color: #E53935; /* Primary color */
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-register__step-description {
    font-size: 15px;
    color: #333333;
    padding: 0 15px;
    text-align: justify;
}

/* Benefits Section */
.page-register__benefits-section {
    padding: 60px 0;
}

.page-register__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Desktop: 3 columns */
    gap: 30px;
    margin-top: 40px;
}

.page-register__benefit-card {
    background: #FFFFFF; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-register__benefit-icon {
    width: 100%;
    max-width: 200px; /* Adjust max-width for benefit icons */
    height: auto;
    min-height: 200px; /* Min size requirement */
    display: block;
    margin: 0 auto 20px;
    object-fit: contain;
}