.page-register {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px);
  background-color: #1A1A1A; /* Auxiliary dark background for the page content */
}

.page-register__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-register__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-register__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-register__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-register__hero-button, .page-register__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  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__hero-button:hover, .page-register__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-register__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 40px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

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

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

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

.page-register__value-icon {
  width: 250px;
  height: 167px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-register__value-text {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-register__steps-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.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;
}

.page-register__step-number {
  counter-increment: step-counter;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-right: 25px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

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

.page-register__step-text {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-register__cta-button--inline {
  margin-top: 40px;
}

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

.page-register__conditions-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-register__conditions-image {
  width: 500px;
  height: 375px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-register__conditions-list {
  list-style: disc;
  padding-left: 25px;
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.8;
}

.page-register__condition-item {
  margin-bottom: 15px;
}

.page-register__faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-register__faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.page-register__faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.page-register__faq-question::after {
  content: '+';
  font-size: 1.5em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.page-register__faq-question.active::after {
  content: '-';
  transform: rotate(0deg); /* Reset rotation for '-' */
}

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

.page-register__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: #cccccc;
  font-size: 1.1em;
  line-height: 1.6;
}

.page-register__faq-answer p {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
}

.page-register__cta-section {
  background-color: #FFD700;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-register__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-register__cta-title {
  font-size: 3em;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.page-register__cta-description {
  font-size: 1.4em;
  color: #333333;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 3em;
  }
  .page-register__hero-description {
    font-size: 1.2em;
  }
  .page-register__section-title {
    font-size: 2.5em;
  }
  .page-register__conditions-content {
    flex-direction: column;
  }
  .page-register__conditions-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 15px 30px;
    min-height: 400px;
  }
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__hero-button, .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-register__section-title {
    font-size: 2em;
    margin: 40px 0 30px;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .page-register__value-item {
    padding: 25px;
  }
  .page-register__value-icon {
    width: 200px;
    height: 133px;
  }
  .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-heading {
    font-size: 1.5em;
  }
  .page-register__conditions-list {
    padding-left: 20px;
  }
  .page-register__faq-question {
    font-size: 1.2em;
  }
  .page-register__cta-title {
    font-size: 2.5em;
  }
  .page-register__cta-description {
    font-size: 1.2em;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .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.9em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__faq-question {
    font-size: 1.1em;
  }
  .page-register__cta-title {
    font-size: 2em;
  }
  .page-register__cta-description {
    font-size: 1em;
  }
}