.page-register {
  color: #f0f0f0; /* Light text for dark background, ensuring WCAG AA contrast */
  background-color: #1A1A1A; /* Dark background as per auxiliary color */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-register__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  min-height: 600px; /* Minimum height for hero section */
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image slightly for text readability, not changing color */
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
}

.page-register__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-register__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-register__cta-button, .page-register__final-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-register__cta-button:hover, .page-register__final-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-register__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

.page-register__value-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-register__value-item:hover {
  transform: translateY(-5px);
}

.page-register__value-icon {
  width: 250px; /* Ensuring minimum size for content images */
  height: 187px; /* Adjusted height to maintain aspect ratio with width 4:3 */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-register__value-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-register__value-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-register__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 215, 0, 0.1); /* Light golden background */
  border-radius: 10px;
}

.page-register__cta-text {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-register__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-register__step-item {
  background-color: rgba(255, 255, 255, 0.05); /* Lighter transparent white */
  border-left: 5px solid #FFD700;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  padding-left: 70px; /* Space for step number */
}

.page-register__step-item::before {
  counter-increment: step-counter;
  content: "Step " counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #FFD700;
  color: #1A1A1A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-register__step-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-register__step-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-register__condition-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #FFD700;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1em;
}

.page-register__condition-item strong {
  color: #FFD700;
}

.page-register__condition-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-register__condition-item a:hover {
  text-decoration: underline;
}

.page-register__faq-list {
  margin-top: 40px;
}

.page-register__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
  transform: rotate(45deg);
}

.page-register__faq-answer {
  padding: 0 25px 20px;
  color: #e0e0e0;
  font-size: 1em;
}

.page-register__faq-answer p {
  margin-top: 0;
}

.page-register__closing-statement {
  padding-bottom: 80px;
}

.page-register__final-cta-button {
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: 2em;
  }

  .page-register__hero-description {
    font-size: 1em;
  }

  .page-register__section-title {
    font-size: 1.8em;
  }

  .page-register__value-grid {
    grid-template-columns: 1fr;
  }

  .page-register__value-icon {
    width: 250px;
    height: auto;
  }

  .page-register__step-item {
    padding-left: 20px;
  }

  .page-register__step-item::before {
    position: static;
    display: block;
    margin-bottom: 10px;
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    color: #FFD700;
    font-size: 1.2em;
    text-align: left;
  }

  .page-register__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

  .page-register__hero-content {
    padding: 15px;
  }

  /* Ensure content area images do not overflow */
  .page-register__value-item img,
  .page-register__steps-list img,
  .page-register__conditions-list img,
  .page-register__faq-list img {
    max-width: 100%;
    height: auto;
  }

  .page-register__content-area {
    padding: 30px 15px;
  }

  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-register__faq-answer {
    padding: 0 20px 15px;
  }

  .page-register__cta-section {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.6em;
  }

  .page-register__cta-button, .page-register__final-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-register__section-title {
    font-size: 1.5em;
  }

  .page-register__value-icon {
    width: 200px;
    height: auto;
  }
}