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

.page-register__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures 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-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

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

.page-register__register-button {
  display: inline-block;
  background-color: #000000; /* Main color for primary action */
  color: #FFFFFF;
  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-top: 20px;
}

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

.page-register__login-button {
  display: inline-block;
  background-color: #FCBC45; /* Accent color for secondary action */
  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;
  margin-left: 15px;
  margin-top: 20px;
}

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

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

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

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__promo-cta {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__section-title {
  font-size: 2em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

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

.page-register__value-item {
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-register__value-icon {
  width: 250px; /* Min size 200x200px */
  height: 187px; /* Min size 200x200px, maintaining aspect ratio */
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-register__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

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

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

.page-register__step-content {
  text-align: left;
}

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

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

.page-register__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

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

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

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

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

.page-register__terms-link {
  display: block;
  text-align: center;
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease;
}

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

.page-register__faq-container {
  display: grid;
  gap: 15px;
}

.page-register__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.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: #FFFFFF;
  border-bottom: 1px solid #eee;
  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;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
  transform: rotate(45deg);
}

.page-register__faq-answer {
  padding: 15px 25px 20px;
  background-color: #fefefe;
  border-top: 1px solid #eee;
  font-size: 0.95em;
  line-height: 1.6;
  color: #555;
}

.page-register__promo-cta {
  text-align: center;
  padding: 50px 20px;
  background-color: #000000; /* Main color for a strong CTA section */
  color: #FFFFFF;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-register__promo-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-register__promo-text {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-register__promo-cta .page-register__register-button {
  background-color: #FCBC45;
  color: #000000;
  margin-bottom: 20px;
}

.page-register__promo-cta .page-register__register-button:hover {
  background-color: #e0a53b;
}

.page-register__view-promo-link {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__value-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 30px 15px;
  }
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__register-button,
  .page-register__login-button {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .page-register__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-register__steps-list {
    gap: 15px;
  }
  .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__step-content {
    text-align: center;
  }
  .page-register__promo-title {
    font-size: 2em;
  }
  .page-register__promo-text {
    font-size: 1em;
  }

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

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.5em;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__promo-title {
    font-size: 1.8em;
  }
  .page-register__register-button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}