.page-register {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #ffffff; /* Explicitly set for content area if needed, though body handles it */
}

/* Hero Section */
.page-register__hero-section {
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background-color: #f8f8f8; /* Light background for the section */
    padding-top: 10px; /* Small top padding, assuming body handles header offset */
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover for desktop */
    border-radius: 8px;
}

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

.page-register__hero-title {
    font-size: clamp(2.5rem, 4vw, 3rem); /* H1 font size constraint */
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

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

/* General Section Styling */
.page-register__section {
    padding: 60px 0;
}

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

.page-register__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-register__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Buttons */
.page-register__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-register__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-register__btn-primary:hover {
    background-color: #1a8cc4;
    transform: translateY(-2px);
}

.page-register__btn-secondary {
    background-color: #EA7C07; /* Login color for secondary CTA */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-register__btn-secondary:hover {
    background-color: #c96a06;
    transform: translateY(-2px);
}

.page-register__cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Why Register Section */
.page-register__why-register {
    background-color: #ffffff;
}

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

.page-register__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-register__feature-icon {
    width: 100%; /* Ensure images are large enough */
    max-width: 400px; /* Example max width, adjust as needed */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

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

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

/* How To Register Section */
.page-register__how-to-register {
    background-color: #26A9E0; /* Dark background */
    color: #ffffff; /* Light text */
}

.page-register__how-to-register .page-register__section-title,
.page-register__how-to-register .page-register__section-description {
    color: #ffffff;
}

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

.page-register__step-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-register__step-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-register__step-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
    color: #f0f0f0;
}

.page-register__step-list li {
    margin-bottom: 5px;
}

/* Important Notes Section */
.page-register__important-notes {
    background-color: #f8f8f8;
}

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