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

.page-register__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-register__hero-content {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

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

.page-register__intro-text {
  font-size: 1.15em;
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-register__register-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Text color as specified for '注册' */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-register__value-section,
.page-register__steps-section,
.page-register__requirements-section,
.page-register__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 30px;
}

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

.page-register__value-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-register__value-icon {
  width: 250px; /* Min 200px */
  height: 187px; /* Min 200px, maintaining aspect ratio */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-register__steps-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-register__steps-image-wrapper {
  flex: 1;
  min-width: 300px;
}

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

.page-register__steps-list {
  flex: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

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

.page-register__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 5px;
}

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

.page-register__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #FCBC45; /* Login color, used as a secondary CTA */
  color: #000000; /* Dark text for light button */
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-register__requirements-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-register__requirements-list {
  list-style: disc;
  margin-left: 20px;
  color: #555555;
  font-size: 1em;
  line-height: 1.8;
}

.page-register__requirements-list strong {
  color: #000000;
}

.page-register__requirements-footer {
  font-size: 0.95em;
  color: #777777;
  text-align: center;
  margin-top: 30px;
}

.page-register__requirements-footer a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-register__requirements-footer a:hover {
  text-decoration: underline;
}

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

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

.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: 0 25px 20px 25px;
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

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

.page-register__faq-answer a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-register__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__main-heading {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  }

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

  .page-register__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-register__main-heading {
    font-size: 2.2em;
  }

  .page-register__intro-text {
    font-size: 1em;
  }

  .page-register__register-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-register__section-heading {
    font-size: 2em;
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-register__value-section,
  .page-register__steps-section,
  .page-register__requirements-section,
  .page-register__faq-section {
    padding: 30px 15px;
  }

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

  .page-register__steps-container {
    flex-direction: column;
  }

  .page-register__steps-image-wrapper {
    width: 100%;
  }

  .page-register__steps-image {
    max-width: 100%;
    height: auto;
  }

  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-register__step-number {
    margin-bottom: 10px;
  }

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

  .page-register__cta-button {
    font-size: 1.2em;
    padding: 12px 30px;
  }

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

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

  /* Ensure all content area images are responsive and don't overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-register__register-button {
    font-size: 1em;
    padding: 10px 20px;
  }

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