.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); /* Fixed header offset for desktop */
}

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

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

.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;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-register__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for the button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: 2px solid #FCBC45;
}

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

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.page-register__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-register__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.page-register__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-register__section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-register__section-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-register__text-block p {
  margin-bottom: 15px;
  color: #444444;
}

.page-register__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  min-width: 200px; /* Ensure images are not below 200px width */
  min-height: 200px; /* Ensure images are not below 200px height */
}

.page-register__action-button {
  display: inline-block;
  background-color: #000000; /* Primary button color */
  color: #FFFFFF; /* Register button color */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-register__action-button:hover {
  background-color: #333333;
}

.page-register__action-button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
}

.page-register__action-button--secondary:hover {
  background-color: #f0f0f0;
}

.page-register__steps-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
}

.page-register__section-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-register__registration-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-register__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  counter-increment: step-counter;
  border-left: 5px solid #FCBC45;
}

.page-register__step-item::before {
  content: counter(step-counter);
  position: absolute;
  top: 15px;
  left: -20px;
  background-color: #FCBC45;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
  padding-left: 30px; /* Offset for the counter */
}

.page-register__step-item p {
  color: #444444;
}

.page-register__image-full-width {
  text-align: center;
}

.page-register__image-full-width img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not below 200px width */
  min-height: 200px; /* Ensure images are not below 200px height */
}

.page-register__conditions-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-register__conditions-list {
  list-style: none;
  padding: 0;
}

.page-register__condition-item {
  background-color: #fdfdfd;
  border: 1px solid #eeeeee;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  line-height: 1.8;
  color: #444444;
}

.page-register__condition-item strong {
  color: #000000;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.page-register__faq-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
}

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

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

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.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: 0 20px 20px;
  color: #444444;
}

.page-register__image-block--center {
  text-align: center;
}

.page-register__image-block--center img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not below 200px width */
  min-height: 200px; /* Ensure images are not below 200px height */
}

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

.page-register__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-register__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-register__cta-login-prompt {
  margin-top: 30px;
  font-size: 1em;
  color: #cccccc;
}

.page-register__login-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__login-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .page-register__hero-title {
    font-size: 2em;
  }

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

  .page-register__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

  .page-register__section-grid--reverse {
    grid-template-columns: 1fr;
  }

  .page-register__section-grid .page-register__image-block:first-child {
    order: 2; /* Reverse order for mobile in reversed grid */
  }

  .page-register__registration-steps {
    grid-template-columns: 1fr;
  }

  .page-register__step-item::before {
    left: 20px;
    top: -20px;
  }

  .page-register__step-title {
    padding-left: 0;
    margin-top: 25px;
  }

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

  .page-register__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }

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