.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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-register__hero-content {
  max-width: 800px;
  text-align: center;
}

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

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

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

.page-register__hero-button--register {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-register__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
}

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

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

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

.page-register__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-register__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

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

.page-register__feature-description {
  color: #555555;
  font-size: 1em;
  flex-grow: 1;
}

.page-register__feature-image {
  width: 400px; /* Example display width, check against 200px min */
  height: 300px; /* Example display height, check against 200px min */
  object-fit: contain;
  margin-top: 20px;
  border-radius: 8px;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  counter-reset: step-counter;
}

.page-register__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

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

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

.page-register__step-description {
  color: #555555;
  font-size: 1.1em;
}

.page-register__step-image {
  width: 600px; /* Example display width, check against 200px min */
  height: 450px; /* Example display height, check against 200px min */
  object-fit: contain;
  margin-top: 20px;
  border-radius: 8px;
  align-self: center;
}

.page-register__button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-register__button--action {
  background-color: #000000;
  color: #FFFFFF;
}

.page-register__button--action:hover {
  background-color: #333333;
}

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

.page-register__condition-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.page-register__condition-description {
  color: #555555;
  font-size: 1em;
}

.page-register__faq-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-register__faq-list {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

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

.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;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

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

.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: 15px 25px;
  font-size: 1.1em;
  color: #555555;
  border-top: 1px solid #eee;
}

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

.page-register__faq-image {
  width: 600px; /* Example display width, check against 200px min */
  height: 450px; /* Example display height, check against 200px min */
  object-fit: contain;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.page-register__button--primary {
  background-color: #000000;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-register__button--primary:hover {
  background-color: #333333;
}

.page-register__button--secondary {
  background-color: #FCBC45;
  color: #000000;
}

.page-register__button--secondary:hover {
  background-color: #e0a53b;
}

.page-register__cta-image {
  width: 800px; /* Example display width, check against 200px min */
  height: 600px; /* Example display height, check against 200px min */
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-register__more-info-section {
  padding-bottom: 80px;
}

.page-register__info-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 40px;
}

.page-register__info-item {
  margin-bottom: 15px;
}

.page-register__info-item a {
  color: #000000;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__info-item a:hover {
  color: #FCBC45;
  text-decoration: underline;
}

/* Responsive adjustments */
@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__hero-section {
    flex-direction: column;
    padding: 60px 15px;
    gap: 30px;
  }

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

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

  .page-register__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 0 5px;
  }

  .page-register__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-register__text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

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

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

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

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

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

  .page-register__button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-register__conditions-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .page-register__faq-answer {
    font-size: 1em;
    padding: 10px 20px;
  }

  /* Ensure all images within .page-register are responsive and not smaller than 200px */
  .page-register__hero-image,
  .page-register__feature-image,
  .page-register__step-image,
  .page-register__faq-image,
  .page-register__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    width: auto; /* Allow auto width for responsive scaling */
    height: auto; /* Allow auto height for responsive scaling */
  }

  .page-register__feature-image,
  .page-register__step-image,
  .page-register__faq-image,
  .page-register__cta-image {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

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

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

  .page-register__hero-button {
    width: 100%;
    margin: 10px 0;
  }

  .page-register__button {
    width: 100%;
  }
}