.page-register {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF;
}

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

.page-register__hero-section {
  position: relative;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-register__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  z-index: 10;
  max-width: 90%;
}

.page-register__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight with accent color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-register__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-register__register-button,
.page-register__join-button,
.page-register__start-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text for bright button */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-register__register-button:hover,
.page-register__join-button:hover,
.page-register__start-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-register__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 60px;
  font-weight: bold;
}

.page-register__value-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-register__value-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-register__value-item:hover {
  transform: translateY(-5px);
}

.page-register__value-image {
  width: 100%;
  height: auto;
  max-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: #555555;
}

.page-register__join-button {
  margin-top: 50px;
  text-align: center;
}

.page-register__steps-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-register__steps-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.page-register__start-button {
  display: block;
  margin: 50px auto 0 auto;
}

.page-register__conditions-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__condition-item {
  background-color: #FFFFFF;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
  display: flex;
  align-items: flex-start;
}

.page-register__condition-item::before {
  content: '✔';
  color: #FCBC45;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
  line-height: 1;
}

.page-register__responsible-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-register__responsible-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

.page-register__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-register__faq-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FCBC45;
  margin-left: 15px;
}

.page-register__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 3em;
  }
  .page-register__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__register-button,
  .page-register__join-button,
  .page-register__start-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-register__value-section,
  .page-register__steps-section,
  .page-register__conditions-section,
  .page-register__faq-section {
    padding: 50px 0;
  }
  .page-register__container {
    padding: 0 15px;
  }
  .page-register__hero-image,
  .page-register__value-image,
  .page-register__steps-image,
  .page-register__faq-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content images are not smaller than 200px display size, but responsive */
  .page-register__value-image,
  .page-register__steps-image,
  .page-register__faq-image {
    min-width: 200px;
    min-height: 200px;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .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__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__hero-description {
    font-size: 0.9em;
  }
  .page-register__register-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__value-heading {
    font-size: 1.3em;
  }
  .page-register__step-heading {
    font-size: 1.2em;
  }
  .page-register__condition-item {
    font-size: 0.95em;
    padding: 15px 20px;
  }
  .page-register__condition-item::before {
    margin-right: 10px;
  }
  .page-register__responsible-link {
    font-size: 1em;
  }
  .page-register__all-faq-link {
    font-size: 1em;
  }
}