.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set for content area if shared.css doesn't define body background */
}

.page-register__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 60px;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

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

.page-register__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
  border-radius: 8px;
}

.page-register__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.page-register__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-register__cta-button--register:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #FFFFFF;
}

.page-register__cta-button--login {
  background-color: #FCBC45;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-register__cta-button--login:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}

.page-register__section {
  padding: 60px 20px;
  border-bottom: 1px solid #eeeeee;
}

.page-register__section:last-of-type {
  border-bottom: none;
}

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

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

.page-register__section-intro {
  font-size: 1.1em;
  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(280px, 1fr));
  gap: 30px;
}

.page-register__value-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-register__value-icon {
  width: 400px; /* Min size 200px. HTML width/height set to 400x300, matching this */
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
}

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

.page-register__value-text {
  color: #666666;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

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

.page-register__step-number {
  counter-increment: step-counter;
  font-size: 2em;
  font-weight: bold;
  color: #FCBC45;
  margin-right: 20px;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

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

.page-register__step-text {
  color: #666666;
}

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

.page-register__cta-button--register-bottom {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-register__cta-button--register-bottom:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #FFFFFF;
}

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

.page-register__condition-item {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #FCBC45;
  border-radius: 4px;
  line-height: 1.8;
  color: #555555;
}

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

.page-register__faq-list {
  margin-top: 30px;
}

.page-register__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #eeeeee;
}

.page-register__faq-item[open] .page-register__faq-question {
  background-color: #e0e0e0;
  border-bottom: none;
}

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

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

.page-register__info-links {
  text-align: center;
  margin-top: 40px;
}

.page-register__info-link {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: bold;
}

.page-register__info-link:hover {
  background-color: #FCBC45;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.5em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header if needed */
    padding-bottom: 40px;
  }
  .page-register__hero-title {
    font-size: 2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-register__section {
    padding: 40px 15px;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-intro {
    font-size: 0.95em;
  }
  .page-register__value-grid, .page-register__conditions-list {
    grid-template-columns: 1fr;
  }
  .page-register__value-icon, .page-register__value-item img {
    max-width: 100%;
    height: auto; /* Ensure images don't overflow on mobile */
    width: auto; /* Allow width to adjust with max-width */
    min-width: 200px; /* Enforce min width if not set by flex/grid */
    min-height: 200px; /* Enforce min height */
  }
  .page-register__step-item {
    flex-direction: column;
    text-align: center;
  }
  .page-register__step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-register__faq-question {
    font-size: 1.1em;
  }
  /* Mobile image overflow prevention for all images within .page-register */
  .page-register img {
    max-width: 100%;
    height: auto; /* Required for all content images on mobile */
  }
}