.page-register {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

.page-register__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background-color: #000000; /* Fallback background for hero */
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

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

.page-register__main-heading {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight color for main heading */
}

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

.page-register__register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-register__register-button:hover {
  background-color: #FFD700; /* Brighter yellow on hover */
  transform: translateY(-2px);
}

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

.page-register__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-register__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #FCBC45;
  margin: 10px auto 0;
}

.page-register__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-register__value-card {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-register__value-icon {
  width: 200px; /* Minimum size for content images */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-register__card-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
}

.page-register__card-text {
  color: #666666;
  font-size: 0.95em;
}

.page-register__action-button {
  display: block;
  width: fit-content;
  margin: 0 auto 40px;
  background-color: #000000; /* Main brand color for action */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-register__action-button:hover {
  background-color: #333333;
}

.page-register__registration-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-register__step-item {
  background-color: #F9F9F9;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-register__step-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-register__step-description {
  color: #555555;
}

.page-register__conditions-list {
  background-color: #F9F9F9;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__condition-item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #555555;
}

.page-register__condition-item::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-register__read-more-link {
  display: block;
  text-align: center;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-register__read-more-link:hover {
  color: #000000;
}

.page-register__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  background-color: #FDFDFD;
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
  background-color: #F0F0F0;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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: #555555;
  font-size: 0.95em;
}

.page-register__call-to-action-section {
  background-color: #F9F9F9;
  padding: 60px 20px;
  text-align: center;
}

.page-register__final-register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000; /* Dark text for bright button */
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-register__final-register-button:hover {
  background-color: #FFD700;
  transform: translateY(-2px);
}

.page-register__login-link {
  display: block;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease;
}

.page-register__login-link:hover {
  color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: 400px;
  }

  .page-register__main-heading {
    font-size: 2em;
  }

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

  .page-register__register-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

  .page-register__value-icon {
    width: 200px; /* Enforce minimum size on mobile */
    height: 150px;
  }

  .page-register__action-button,
  .page-register__final-register-button {
    width: 100%;
    max-width: 300px;
    font-size: 1em;
  }

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

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

  /* Ensure content area images do not overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-section {
    min-height: 300px;
  }

  .page-register__main-heading {
    font-size: 1.8em;
  }

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

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

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

  .page-register__action-button,
  .page-register__final-register-button {
    font-size: 0.9em;
  }
}