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

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

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8; /* Slightly reduce opacity to make text readable */
}

.page-register__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  border-radius: 10px;
  color: #FFFFFF; /* Light text on dark overlay */
}

.page-register__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  font-weight: bold;
}

.page-register__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-register__register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  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;
  border: 2px solid #FCBC45;
}

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

.page-register__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
}

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

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

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

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

.page-register__value-item {
  background-color: #f8f8f8;
  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-icon {
  width: 200px; /* Min size 200px */
  height: 150px; /* Min size 200px, adjusted for aspect ratio for display */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-register__steps-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: #f4f4f4;
}

.page-register__steps-image {
  width: 800px; /* Display size */
  height: 533px; /* Display size */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-register__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  border-radius: 50%;
  font-size: 1.5em;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 20px;
}

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

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

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

.page-register__conditions-list {
  list-style: disc;
  padding-left: 30px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__condition-item {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #444444;
}

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

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

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

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

.page-register__faq-toggle {
  font-size: 1.5em;
  color: #FCBC45; /* Login color */
  margin-left: 15px;
  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__faq-image {
  width: 800px; /* Display size */
  height: 533px; /* Display size */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.page-register__cta-final-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-register__cta-final-section .page-register__section-title {
  color: #FCBC45; /* Login color for emphasis */
}

.page-register__cta-final-section .page-register__section-intro {
  color: #f0f0f0;
}

.page-register__register-button--final {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  border-color: #FCBC45;
}

.page-register__register-button--final:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .page-register__hero-title {
    font-size: 3em;
  }
  .page-register__hero-description {
    font-size: 1.2em;
  }
  .page-register__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 15px 30px;
    min-height: 400px;
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  }
  .page-register__hero-title {
    font-size: 2.5em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__register-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-register__section {
    padding: 40px 15px;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .page-register__value-icon {
    width: 200px; /* Min size 200px */
    height: 150px; /* Min size 200px, adjusted for aspect ratio for display */
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-register__steps-image,
  .page-register__faq-image {
    width: 100%;
    height: auto;
    max-width: 100%; /* Important for mobile overflow */
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__faq-toggle {
    font-size: 1.2em;
  }
  .page-register__register-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  /* Ensure all images within .page-register are responsive */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 2em;
  }
  .page-register__hero-description {
    font-size: 0.9em;
  }
  .page-register__register-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__value-heading {
    font-size: 1.5em;
  }
  .page-register__step-heading {
    font-size: 1.4em;
  }
  .page-register__faq-question {
    font-size: 1em;
  }
}