.page-register {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-register__hero-section {
  background-color: #1E90FF;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-register__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-register__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Slightly dim the background image */
}

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

.page-register__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-register__section-title {
  font-size: 2.5em;
  color: #1E90FF;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-register__value-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

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

.page-register__value-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  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; /* Minimum size requirement */
  height: 150px; /* Minimum size requirement */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-register__value-text {
  font-size: 1em;
  color: #555555;
}

.page-register__steps-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-register__step-item {
  background-color: #ffffff;
  border-left: 5px solid #1E90FF;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-register__step-number {
  counter-increment: step-counter;
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  background-color: #1E90FF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-register__step-number::before {
  content: counter(step-counter);
}

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

.page-register__step-text {
  font-size: 1em;
  color: #555555;
}

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

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

.page-register__conditions-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-register__conditions-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__conditions-text {
  margin-bottom: 20px;
  font-size: 1em;
  color: #444444;
}

.page-register__link {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-register__link:hover {
  text-decoration: underline;
}

.page-register__faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-register__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: #FFD700;
  color: #1E90FF;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-question[aria-expanded="true"] .page-register__faq-icon {
  transform: rotate(45deg);
}

.page-register__faq-icon {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-register__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-register__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  color: #555555;
}

.page-register__faq-answer.page-register__faq-answer--expanded {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-register__call-to-action {
  background-color: #1E90FF;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-register__cta-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button--final {
  background-color: #FFD700;
  color: #1E90FF;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-register__cta-button--final:hover {
  background-color: #e6c200;
  transform: translateY(-4px);
}

.page-register__login-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: block;
  margin-top: 20px;
}

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

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

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

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

@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 80px);
  }

  .page-register__hero-section {
    padding: 60px 15px;
  }

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

  .page-register__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-register__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }

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

  .page-register__value-item {
    padding: 25px;
  }

  .page-register__value-icon {
    width: 200px; /* Ensure minimum size */
    height: 150px; /* Ensure minimum size */
    max-width: 100%;
    height: auto;
  }

  .page-register__value-heading {
    font-size: 1.4em;
  }

  .page-register__steps-section {
    padding: 40px 15px;
  }

  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-register__step-number {
    margin-bottom: 15px;
  }

  .page-register__step-heading {
    font-size: 1.5em;
  }

  .page-register__conditions-section,
  .page-register__faq-section {
    padding: 40px 15px;
  }

  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-register__call-to-action {
    padding: 60px 15px;
  }

  .page-register__cta-text {
    font-size: 1.1em;
  }

  .page-register__cta-button--final {
    padding: 15px 30px;
    font-size: 1.2em;
  }

  .page-register__login-link {
    font-size: 1em;
  }

  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }

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

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

  .page-register__value-heading {
    font-size: 1.2em;
  }

  .page-register__step-heading {
    font-size: 1.3em;
  }

  .page-register__faq-question {
    font-size: 1em;
  }

  .page-register__cta-text {
    font-size: 1em;
  }

  .page-register__cta-button--final {
    font-size: 1.1em;
  }
}