.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); /* Ensure content is not hidden by fixed header */
}

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

.page-register__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 80px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

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

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

.page-register__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

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

.page-register__cta-button--register {
  background-color: #000000; /* Main color for register button background */
  color: #FFFFFF; /* White text for register button */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-register__cta-button--explore,
.page-register__cta-button--get-started {
  background-color: #FCBC45; /* Login color for other CTA buttons */
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-register__cta-button--explore:hover,
.page-register__cta-button--get-started:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-register__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
  position: relative;
  padding-bottom: 15px;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-register__value-section {
  background-color: #f8f8f8;
}

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

.page-register__value-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-register__value-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-register__steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.page-register__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1 1 calc(33% - 40px);
  min-width: 280px;
  position: relative;
}

.page-register__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register__step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

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

.page-register__conditions-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-register__conditions-image {
  flex: 1 1 400px;
  max-width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-register__conditions-text {
  flex: 1 1 400px;
  max-width: 600px;
  font-size: 1.1em;
  color: #333333;
}

.page-register__conditions-text p {
  margin-bottom: 20px;
}

.page-register__link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.page-register__link:hover {
  color: #FCBC45;
}

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

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

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

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

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

.page-register__contact-prompt {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #333333;
}

.page-register__contact-prompt .page-register__link {
  color: #000000;
}

.page-register__contact-prompt .page-register__link:hover {
  color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.8em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__value-image,
  .page-register__step-image,
  .page-register__conditions-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-register__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-register__hero-title {
    font-size: 2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-register__value-grid,
  .page-register__steps-list {
    grid-template-columns: 1fr;
  }
  .page-register__value-item,
  .page-register__step-item {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-register__value-image,
  .page-register__step-image,
  .page-register__conditions-image {
    height: 200px;
    max-width: 100%;
    width: auto; /* Allow image to scale down */
  }
  .page-register__conditions-content {
    flex-direction: column;
    text-align: center;
  }
  .page-register__conditions-image {
    order: -1; /* Image above text on mobile */
    margin-bottom: 20px;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px 15px;
  }
  /* Ensure content area images do not overflow on mobile */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__hero-description {
    font-size: 0.9em;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__value-image,
  .page-register__step-image,
  .page-register__conditions-image {
    height: 180px;
  }
}