.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__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: #000000; /* Dark background for hero content area */
}

.page-register__hero-container {
  position: relative;
  max-width: 100%; /* Block element by default fills width, no need for width: 100% */
  margin: 0 auto;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image for text readability */
}

.page-register__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 80%;
  z-index: 10;
}

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

.page-register__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-register__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 8px;
  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 {
  background-color: #E0A83A;
  transform: translateY(-2px);
}

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

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

.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__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.page-register__value-section {
  background-color: #F8F8F8;
  padding: 60px 0;
}

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

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

.page-register__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-register__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-register__feature-text {
  font-size: 1em;
  color: #666666;
}

.page-register__cta-button--bottom {
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-register__steps-section {
  padding: 60px 0;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
}

.page-register__step-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__step-item:last-child {
  margin-bottom: 0;
}

.page-register__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
}

.page-register__step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  font-weight: bold;
}

.page-register__steps-list {
  counter-reset: step-counter;
}

.page-register__step-text {
  font-size: 1em;
  color: #666666;
  padding-left: 40px;
}

.page-register__cta-button--center {
  display: block;
  margin: 30px auto 0 auto;
  text-align: center;
}

.page-register__conditions-section {
  background-color: #F8F8F8;
  padding: 60px 0;
}

.page-register__rules-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
}

.page-register__rule-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__rule-item:last-child {
  margin-bottom: 0;
}

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

.page-register__rule-text {
  font-size: 1em;
  color: #666666;
}

.page-register__faq-section {
  padding: 60px 0;
}

.page-register__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-register__faq-item summary {
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.page-register__faq-item summary:hover {
  background-color: #F5F5F5;
  border-radius: 10px;
}

.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 25px;
  font-size: 1em;
  color: #555555;
  line-height: 1.8;
}

.page-register__cta-final-section {
  background-color: #000000;
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.page-register__cta-final-section .page-register__section-title {
  color: #FFFFFF;
}

.page-register__cta-final-section .page-register__section-title::after {
  background-color: #FCBC45;
}

.page-register__cta-final-section .page-register__section-description {
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25em;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-register__login-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__login-link:hover {
  color: #E0A83A;
  text-decoration: underline;
}

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

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

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

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

  .page-register__section-description {
    font-size: 0.95em;
  }

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

  .page-register__feature-card {
    padding: 25px;
  }

  .page-register__step-title {
    font-size: 1.4em;
  }

  .page-register__step-text {
    font-size: 0.95em;
  }

  .page-register__rule-title {
    font-size: 1.4em;
  }

  .page-register__rule-text {
    font-size: 0.95em;
  }

  .page-register__faq-item summary {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-register__faq-answer {
    font-size: 0.95em;
    padding: 0 20px 18px 20px;
  }

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

  .page-register__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  
  /* Ensure all content area images are responsive and do not overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  .page-register__feature-icon {
    width: 200px;
    height: 150px;
  }
}

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

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

  .page-register__hero-content {
    max-width: 90%;
  }

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

  .page-register__cta-button {
    width: 100%;
    box-sizing: border-box;
  }

  .page-register__cta-button--bottom, .page-register__cta-button--center, .page-register__cta-button--large {
    width: 100%;
    box-sizing: border-box;
  }
}