.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 not hidden by fixed header */
}

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

.page-register__hero-section {
  background-color: #f0f0f0;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.page-register__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-register__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-register__btn--register {
  background-color: #000000; /* Primary color */
  color: #FFFFFF; /* White text for contrast */
  border-color: #000000;
}

.page-register__btn--register:hover {
  background-color: #333333;
  border-color: #333333;
}

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

.page-register__btn--login:hover {
  background-color: #e0a538;
  border-color: #e0a538;
}

.page-register__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  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 {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

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

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

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

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

.page-register__value-text {
  color: #666666;
  font-size: 1em;
}

.page-register__value-text a {
  color: #000000;
  text-decoration: underline;
}

.page-register__btn--explore,
.page-register__btn--support {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-register__btn--explore:hover,
.page-register__btn--support:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

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

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

.page-register__step-text {
  color: #666666;
  font-size: 1em;
}

.page-register__step-text a {
  color: #000000;
  text-decoration: underline;
}

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

.page-register__conditions-list {
  list-style: disc;
  padding-left: 25px;
  max-width: 800px;
  margin: 40px auto;
  color: #555555;
}

.page-register__condition-item {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-register__terms-link {
  text-align: center;
  font-size: 1.1em;
  margin-top: 30px;
}

.page-register__terms-link a {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

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

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

.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;
  border-bottom: 1px solid transparent; /* Placeholder for visual separation */
}

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

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

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: 2em;
  }

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

  .page-register__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-register__btn {
    width: 100%;
    padding: 12px 20px;
  }

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

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

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

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

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

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

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

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

  /* Ensure content area images do not overflow on mobile */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-register__btn {
    font-size: 1em;
  }
}