.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 below fixed header */
}

.page-register__hero-section {
  background-color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-register__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  min-width: 200px;
  text-align: center;
}

.page-register__cta-button--register {
  background-color: #000000; /* Main color for register */
  color: #FFFFFF;
}

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

.page-register__cta-button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

.page-register__cta-button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-register__value-section,
.page-register__steps-section,
.page-register__terms-section,
.page-register__faq-section,
.page-register__cta-final-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-register__value-item {
  text-align: center;
  padding: 25px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register__value-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-register__value-text {
  color: #666666;
}

.page-register__cta-button--join-us {
  display: block;
  margin: 40px auto 0;
  background-color: #000000;
  color: #FFFFFF;
  max-width: 300px;
}

.page-register__cta-button--join-us:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

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

.page-register__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #000000;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-register__step-item:hover {
  background-color: #f0f0f0;
}

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

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

.page-register__steps-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register__terms-list {
  list-style: disc;
  padding-left: 25px;
  color: #555555;
  margin-bottom: 30px;
}

.page-register__terms-item {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-register__terms-item strong {
  color: #000000;
}

.page-register__terms-link {
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-register__faq-container {
  margin-top: 30px;
}

.page-register__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  background-color: #FCBC45; /* FAQ question background */
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-question::marker, /* Hide default marker for details tag */
.page-register__faq-question::-webkit-details-marker {
  display: none;
}

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

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

.page-register__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  color: #555555;
  background-color: #FFFFFF;
}

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

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

.page-register__cta-final-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-register__cta-final-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-register__cta-button--final {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-register__cta-button--final:hover {
  background-color: #e0a53b;
  transform: translateY(-5px);
}

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

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

@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

  .page-register__hero-section {
    padding: 60px 15px;
    flex-direction: column;
  }

  .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;
    margin: 10px 5px;
    min-width: unset;
    width: calc(100% - 20px);
  }

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

  .page-register__value-item {
    padding: 20px;
  }

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

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

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

  .page-register__registration-steps {
    padding-left: 0;
  }

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

  .page-register__step-heading {
    font-size: 1.2em;
  }

  .page-register__terms-list {
    padding-left: 20px;
  }

  .page-register__terms-item,
  .page-register__faq-answer p {
    font-size: 0.95em;
  }

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

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

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

  .page-register__cta-button--final {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  
  .page-register__hero-image,
  .page-register__value-icon,
  .page-register__steps-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content images are responsive and do not cause overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-register__cta-button {
    min-width: 100%;
  }

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