.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg); /* Assuming dark background from shared.css */
}

.page-register__hero-section {
  position: relative;
  padding: var(--header-offset, 120px) 20px 60px; /* Adjust padding for fixed header */
  background: linear-gradient(135deg, #0A2463, #06183F);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-register__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-register__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #E5B80B; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-register__hero-description {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  overflow: hidden;
}

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

.page-register__section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--dark-bg); /* Default dark background */
}

.page-register__dark-section {
  background-color: #0A2463;
  color: #ffffff;
}

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

.page-register__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #E5B80B;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__cta-button--primary {
  background-color: #E5B80B;
  color: #0A2463;
  box-shadow: 0 4px 15px rgba(229, 184, 11, 0.4);
}

.page-register__cta-button--primary:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 184, 11, 0.6);
}

.page-register__cta-button--secondary {
  background-color: transparent;
  color: #E5B80B;
  border: 2px solid #E5B80B;
  box-shadow: 0 2px 10px rgba(229, 184, 11, 0.2);
}

.page-register__cta-button--secondary:hover {
  background-color: #E5B80B;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(229, 184, 11, 0.4);
}

/* Why Join Section */
.page-register__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

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

.page-register__feature-title {
  font-size: 24px;
  color: #E5B80B;
  margin-bottom: 15px;
}

.page-register__feature-text {
  font-size: 16px;
  color: #f0f0f0;
}

/* Guide Section */
.page-register__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.page-register__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.page-register__step-number {
  width: 60px;
  height: 60px;
  background-color: #E5B80B;
  color: #0A2463;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(229, 184, 11, 0.4);
}

.page-register__step-title {
  font-size: 28px;
  color: #E5B80B;
  margin-bottom: 15px;
}}