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

.page-register__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero */
}

.page-register__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}

.page-register__hero-content {
  flex: 1;
  max-width: 700px;
  text-align: left;
}

.page-register__hero-title {
  font-size: 3.5em;
  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-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.page-register__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

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

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

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

.page-register__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-register__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

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

.page-register__section-intro {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

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

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

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

.page-register__value-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.page-register__value-card:hover {
  transform: translateY(-5px);
}

.page-register__value-card-icon {
  width: 100%; /* Ensure image fills card area */
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

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

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

.page-register__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #eee;
}

.page-register__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  color: #FCBC45;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  flex-shrink: 0;
}

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

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

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

.page-register__condition-item {
  background-color: #F8F8F8;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
}

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

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

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

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

.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;
  transition: background-color 0.3s ease;
}

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

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

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

.page-register__final-cta-section {
  padding: 80px 20px;
  background-color: #000000;
  color: #FFFFFF;
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-register__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-register__hero-content {
    text-align: center;
    max-width: 100%;
  }

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

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

  .page-register__hero-image-wrapper {
    margin-top: 30px;
  }

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

  .page-register__value-cards, .page-register__steps-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: auto;
    padding: 40px 15px;
  }

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

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

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

  .page-register__section {
    padding: 40px 15px;
  }

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

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

  .page-register__value-card, .page-register__step-item, .page-register__condition-item {
    padding: 20px;
  }

  .page-register__value-card-icon, .page-register__hero-image {
    max-width: 100%;
    height: auto; /* Prevent horizontal scroll */
    min-width: 200px;
    min-height: 200px;
  }

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

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

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

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

  .page-register__final-cta-section {
    padding: 60px 15px;
  }

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

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

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

  .page-register__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}