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

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

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

.page-register__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.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;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-register__register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000; /* Dark text for bright button */
  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;
  margin-bottom: 15px;
}

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

.page-register__login-link {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease;
}

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

.page-register__value-section, .page-register__steps-section, .page-register__conditions-section, .page-register__faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

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

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

.page-register__value-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  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-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

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

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

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

.page-register__step-heading {
  font-size: 1.3em;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 5px;
}

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

.page-register__steps-image {
  flex: 1;
  min-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #f8f8f8;
  border-radius: 10px;
}

.page-register__cta-text {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-register__condition-item {
  background-color: #fcfcfc;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1em;
  line-height: 1.7;
  color: #444444;
}

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

.page-register__faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-register__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  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: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  background-color: #fcfcfc;
  border-bottom: 1px solid #e9e9e9;
  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;
  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;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.8em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__steps-container {
    flex-direction: column;
  }
  .page-register__steps-image {
    min-width: unset;
    width: 100%;
  }
  .page-register__conditions-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__register-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register__register-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-intro {
    font-size: 1em;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .page-register__value-image {
    height: 200px; /* Ensure images are not too small for mobile */
  }
  .page-register__steps-container {
    gap: 20px;
  }
  .page-register__steps-image {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure content images are responsive */
  }
  .page-register__cta-bottom {
    padding: 25px;
  }
  .page-register__cta-text {
    font-size: 1.2em;
  }
  .page-register__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-register__faq-answer {
    padding: 15px 20px;
  }
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__register-button {
    width: 100%;
    max-width: 250px;
  }
  .page-register__login-link {
    font-size: 0.9em;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-register__value-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%;
    height: auto;
  }
  .page-register__steps-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%;
    height: auto;
  }
  .page-register__faq-item img, .page-register__value-item img, .page-register__steps-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}