:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow: #4FA8FF;
  --gold: #F2C14E;
  --divider: #1B3357;
  --deep-navy: #08162B; /* This is the body background color */
  --primary-color-rgb: 17, 59, 122; /* RGB for #113B7A for rgba usage */
}

/* --- Base Styles --- */
.page-register {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Light text for dark body background */
  background-color: transparent; /* Body handles the background color */
  line-height: 1.6;
  padding-bottom: 50px; /* Ensure some space above the footer */
}

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

.page-register__section {
  padding: 60px 0;
  position: relative;
}

.page-register__section-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--gold); /* Using gold for main titles for contrast */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-register__section-description {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-register__text-block {
  font-size: 16px;
  color: var(--text-main);
}

.page-register__text-block p {
  margin-bottom: 15px;
}

.page-register__text-block--center {
  text-align: center;
}

.page-register__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-register__list li {
  margin-bottom: 10px;
}

/* --- Buttons --- */
.page-register__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-register__btn--primary {
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register__btn--primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%); /* Invert gradient on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-register__btn--secondary {
  background: var(--deep-navy);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-register__btn--secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register__btn--link {
  color: var(--gold);
  background: transparent;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  text-decoration: underline;
}

.page-register__btn--link:hover {
  color: var(--glow);
  text-decoration: none;
  transform: none;
  box-shadow: none;
}

.page-register__btn--large {
  padding: 18px 45px;
  font-size: 20px;
}

/* --- Hero Section --- */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--deep-navy); /* Match body background for consistency */
  overflow: hidden; /* Prevent content overflow */
}

.page-register__hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure content is above any potential background elements */
}