.page-register {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  line-height: 1.6;
}

.page-register__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  text-align: center;
  padding-bottom: 80px;
  overflow: hidden;
}

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

.page-register__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-register__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  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__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-register__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

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

.page-register__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-register__value-section {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
  padding: 60px 0;
}

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

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

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

.page-register__value-icon {
  width: 200px; /* Minimum size */
  height: 200px; /* Minimum size */
  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: 1.1em;
  color: #e0e0e0;
}

.page-register__secondary-cta {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-register__secondary-cta:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-register__steps-section {
  padding: 60px 0;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-register__step-item {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-register__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #000000;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.page-register__steps-image, .page-register__conditions-image, .page-register__faq-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-register__conditions-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 60px 0;
}

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-register__condition-item {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
}

.page-register__condition-item::before {
  content: '•';
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
  line-height: 1;
}

.page-register__terms-link {
  display: block;
  text-align: center;
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-register__terms-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-register__faq-section {
  padding: 60px 0;
}

.page-register__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-register__faq-item {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-register__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.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: 0 25px 20px;
  color: #e0e0e0;
  font-size: 1em;
}

.page-register__cta-banner-section {
  background: linear-gradient(90deg, #000000, rgba(255, 215, 0, 0.2), #000000);
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.page-register__cta-banner-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-register__cta-banner-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 40px;
}

.page-register__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

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

@media (max-width: 768px) {
  .page-register__hero-section {
    padding-bottom: 60px;
  }
  .page-register__hero-title {
    font-size: 2.5em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__value-grid, .page-register__steps-list {
    grid-template-columns: 1fr;
  }
  .page-register__cta-banner-title {
    font-size: 2em;
  }
  .page-register__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-register__hero-image,
  .page-register__value-icon,
  .page-register__steps-image,
  .page-register__conditions-image,
  .page-register__faq-image {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__value-item, .page-register__step-item {
    padding: 20px;
  }
  .page-register__value-heading {
    font-size: 1.4em;
  }
  .page-register__step-heading {
    font-size: 1.3em;
  }
  .page-register__cta-banner-title {
    font-size: 1.8em;
  }
  .page-register__cta-banner-description {
    font-size: 1em;
  }
  .page-register__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}