.page-register {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Ensures consistency with body background */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

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

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text on dark background */
}

.page-register__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
}

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

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

.page-register__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text on bright button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-register__hero-button:hover {
  background-color: #E0A73A;
}

.page-register__hero-image {
  width: 100%;
  max-width: 1000px; /* Max width for image within hero */
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__cta-final-section {
  padding: 80px 0;
}

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

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

.page-register__value-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  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;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-register__cta-button {
  display: block;
  width: fit-content;
  margin: 60px auto 0 auto;
  background-color: #000000; /* Main color for CTA */
  color: #FFFFFF;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

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

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

.page-register__step-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  padding-left: 80px;
}

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

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

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

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

.page-register__conditions-list {
  list-style: disc;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
  padding-left: 30px;
  color: #333333;
}

.page-register__condition-item {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
}

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

.page-register__text-link {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.page-register__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  background-color: #FDFDFD;
  border-bottom: 1px solid #EEEEEE;
}

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

.page-register__faq-item[open] .page-register__faq-question {
  border-bottom-color: #DDDDDD;
}

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

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

.page-register__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  background-color: #FFFFFF;
}

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

.page-register__faq-button {
  display: block;
  width: fit-content;
  margin: 60px auto 0 auto;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-register__faq-button:hover {
  background-color: #E0A73A;
}

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

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

.page-register__cta-final-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #F0F0F0;
}

.page-register__cta-final-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-register__cta-final-button:hover {
  background-color: #E0A73A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 120px); /* Ensure mobile also has header offset */
  }

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

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

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

  .page-register__hero-section,
  .page-register__value-section,
  .page-register__steps-section,
  .page-register__conditions-section,
  .page-register__faq-section,
  .page-register__cta-final-section {
    padding: 40px 0;
  }

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

  .page-register__hero-image,
  .page-register__value-icon,
  .page-register__faq-item img {
    max-width: 100%;
    height: auto;
  }

  .page-register__step-item {
    padding-left: 20px;
    padding-top: 60px;
  }

  .page-register__step-item::before {
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
  }

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

  /* Ensure all images within .page-register are responsive and not too small */
  .page-register img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }

  /* Override min-width/height for specific elements if needed, but ensure they are still >=200px or handled by shared */
  .page-register__value-icon {
    min-width: 200px;
    min-height: 150px; /* Adjusted for aspect ratio, still >200px on one side */
  }

}