/* General styles for the register page, scoped with BEM */
.page-register {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F3F8FF; /* Text Main - light color for dark body background */
    background-color: #08162B; /* Deep Navy - body background */
}

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

.page-register__section {
    padding: 60px 0;
    text-align: center;
}

.page-register__section--light {
    background-color: #10233F; /* Card BG - slightly lighter dark background */
}

.page-register__section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold */
    line-height: 1.2;
}

.page-register__section-description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #AFC4E8; /* Text Secondary */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-register__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-register__hero-image {
    width: 100%;
    max-height: 600px; /* Limit height for desktop */
    overflow: hidden;
    margin-bottom: 40px;
}

.page-register__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover for desktop */
    aspect-ratio: 16/9;
}

.page-register__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.page-register__main-title {
    font-size: clamp(2.5rem, 5vw, 48px); /* H1 with clamp for responsiveness */
    font-weight: 800;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-register__hero-description {
    font-size: 20px;
    color: #F3F8FF;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* For responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-register__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-register__cta-button--large {
    padding: 18px 40px;
    font-size: 22px;
}

/* Benefits Section */
.page-register__benefits-section {
    background-color: #08162B; /* Deep Navy */
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-register__benefit-card {
    background: #10233F; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #244D84; /* Border */
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
}

.page-register__benefit-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-register__card-title {
    font-size: 24px;
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-register__card-text {
    font-size: 16px;
    color: #AFC4E8; /* Text Secondary */
    flex-grow: 1; /* Push footer down if any */
}