:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --main-bg: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --text-dark: #333333; /* For contrast on light backgrounds */
    --text-light: #ffffff; /* For contrast on dark backgrounds */
}

.page-register {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--main-bg);
    line-height: 1.6;
    padding-bottom: 50px;
}

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

.page-register__section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-register__section-description {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-main);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-register__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    background-color: var(--main-bg);
    overflow: hidden;
}

.page-register__hero-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-register__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-register__hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 15px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}