.page-register__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow: hidden;
}

.page-register__hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-register__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.page-register__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-register__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__hero-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-register__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-register__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-register__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.page-register__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* General Section Styling */
.page-register__dark-section {
    background-color: var(--black-color);
    color: #FFFFFF; /* Light text for dark background */
    padding: 80px 20px;
}

.page-register__light-bg {
    background-color: #FFFFFF;
    color: #333333; /* Dark text for light background */
    padding: 80px 20px;
}

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

/* Why Join Section */
.page-register__why-join-section .page-register__section-title,
.page-register__why-join-section .page-register__section-intro {
    color: #FFFFFF;
}

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