.page-register {
  background-color: #1a1a1a; /* Inherited from body, but explicitly set for clarity */
  color: #ffffff; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Default padding-top for content below fixed header */
}

/* Override for hero section if body already has padding-top */
body.has-header-offset .page-register {
  padding-top: 0; /* Remove padding if shared.css already handles it on body */
}

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

.page-register__dark-section {
  background-color: #0d0d0d; /* Slightly darker than body for distinction */
  padding: 60px 0;
}

.page-register__section-title {
  font-size: 36px;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-register__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 80px 0;
  background-color: #1a1a1a;
  overflow: hidden;
}

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

.page-register__main-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}