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

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

.page-register__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1E90FF; /* Auxiliary blue as fallback */
  color: #ffffff;
  padding: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-register__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold primary color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

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

.page-register__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1E90FF; /* Dark blue auxiliary color for text */
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-register__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

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

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

.page-register__section-title {
  font-size: 2.8em;
  color: #1E90FF; /* Dark blue auxiliary color */
  text-align: center;
  margin-bottom: 25px;
  margin-top: 60px;
}

.page-register__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-register__value-section, .page-register__steps-section, .page-register__conditions-section, .page-register__faq-section, .page-register__cta-bottom-section {
  padding: 60px 0;
}

.page-register__value-section {
  background-color: #f9f9f9;
}

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

.page-register__value-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px 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;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-register__value-heading {
  font-size: 1.8em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 15px;
}

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

.page-register__steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 50px;
}

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

.page-register__step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-register__step-content {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.page-register__step-image {
  flex-shrink: 0;
  width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__step-heading {
  font-size: 2.2em;
  color: #1E90FF; /* Dark blue auxiliary color */
  margin-bottom: 15px;
}

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

.page-register__conditions-section {
  background-color: #f0f8ff;
}

.page-register__conditions-list {
  list-style: disc;
  padding-left: 25px;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #444444;
}

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

.page-register__condition-item a {
  color: #1E90FF; /* Dark blue for links */
  text-decoration: underline;
}

.page-register__condition-item a:hover {
  color: #0f6bbd;
}

.page-register__cta-link {
  display: block;
  text-align: center;
  font-size: 1.1em;
  color: #1E90FF; /* Dark blue for links */
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
}

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

.page-register__faq-section {
  background-color: #ffffff;
}

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

.page-register__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-register__faq-item[open] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #1E90FF; /* Dark blue auxiliary color */
  cursor: pointer;
  background-color: #f5fafd;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}

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

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

.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: 15px 25px 20px;
  font-size: 1.05em;
  color: #666666;
  background-color: #ffffff;
}

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

.page-register__faq-answer a {
  color: #1E90FF;
  text-decoration: underline;
}

.page-register__cta-bottom-section {
  background: linear-gradient(135deg, #1E90FF, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-register__cta-bottom-container {
  max-width: 900px;
}

.page-register__cta-bottom-title {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

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

  .page-register__step-image {
    width: 500px;
    height: 333px;
  }
}

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

  .page-register__hero-content {
    padding: 25px;
  }

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

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

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

  .page-register__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-register__value-icon {
    width: 200px;
    height: auto;
  }

  .page-register__step-item,
  .page-register__step-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .page-register__step-image {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .page-register__step-content {
    text-align: center;
    max-width: none;
  }

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

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

  .page-register__faq-answer {
    font-size: 0.95em;
    padding: 10px 20px 15px;
  }

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

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

  /* Ensure all images within .page-register do not cause horizontal scroll */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  /* Content area images must be >= 200px. This ensures they scale down gracefully but aren't forced to be tiny. */
  .page-register__value-icon, .page-register__step-image {
    min-width: 200px;
    min-height: 200px;
  }
}

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

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

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

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

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

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

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