.page-register {
  color: #333333; /* Dark text for light body background */
}

.page-register__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #000000; /* Dark background for hero content readability */
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim image for text readability */
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  color: #FFFFFF; /* Light text for dark hero background */
}

.page-register__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-register__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #F0F0F0;
}

.page-register__register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Dark text for button */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-register__register-button:hover {
  background-color: #e0a73b;
  transform: translateY(-2px);
}

.page-register__register-button--large {
  padding: 20px 45px;
  font-size: 1.5em;
}

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

.page-register__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-register__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

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

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

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

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

.page-register__feature-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-register__call-to-action-text {
  text-align: center;
  font-size: 1.3em;
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #000000;
}

.page-register__steps-section {
  background-color: #F5F5F5;
  padding: 60px 0;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-register__step-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 80px;
}

.page-register__step-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: 20px;
  top: 30px;
  font-size: 1.8em;
  font-weight: bold;
  color: #FCBC45;
}

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

.page-register__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

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

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

.page-register__condition-item {
  background-color: #F8F8F8;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-register__condition-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-register__condition-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-register__faq-section {
  background-color: #F5F5F5;
  padding: 60px 0;
}

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

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

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

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

.page-register__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  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 30px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-register__faq-answer p {
  margin-bottom: 10px;
}

.page-register__journey-section {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.page-register__journey-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

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

.page-register__journey-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-register__journey-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-register__journey-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-register__learn-more-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

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

.page-register__responsible-gaming-section {
  background-color: #F5F5F5;
  padding: 60px 0;
}

.page-register__responsible-gaming-content {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
}

.page-register__responsible-gaming-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 25px;
}

.page-register__final-cta-section {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
}

.page-register__final-cta-section .page-register__section-title {
  color: #FFFFFF;
}

.page-register__final-cta-section .page-register__section-description {
  color: #F0F0F0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 3em;
  }

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

@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px); /* Ensure mobile also respects offset */
  }

  .page-register__hero-title {
    font-size: 2.5em;
  }

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

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

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

  .page-register__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-register__feature-item,
  .page-register__journey-item {
    padding: 25px;
  }

  .page-register__feature-title,
  .page-register__journey-title {
    font-size: 1.3em;
  }

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

  .page-register__step-item::before {
    font-size: 1.5em;
    left: 15px;
  }

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

  .page-register__condition-title,
  .page-register__faq-question {
    font-size: 1.2em;
  }

  .page-register__call-to-action-text {
    font-size: 1.1em;
  }

  .page-register__register-button--large {
    font-size: 1.2em;
    padding: 15px 35px;
  }

  /* Ensure all content images within .page-register are responsive */
  .page-register img {
    max-width: 100%;
    height: auto;
  }

  /* Override any specific img rules that might make them too small */
  .page-register__feature-icon,
  .page-register__journey-image {
    min-width: 200px; /* Ensure minimum size is maintained */
    min-height: 200px;
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
  }
}

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

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

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

  .page-register__register-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

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

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