.page-register {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Ensure main content background is dark */
}

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

.page-register__section {
  padding: 60px 0;
}

.page-register__section-title,
.page-register__cta-title {
  font-size: 3em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-register__section-intro,
.page-register__cta-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken image for text readability, not changing color */
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

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

.page-register__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-register__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-register__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-register__btn--primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

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

.page-register__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-register__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-3px);
}

.page-register__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-register__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Value Section */
.page-register__value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register__value-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-register__value-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-register__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-register__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Steps Section */
.page-register__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-register__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-register__step-number {
  counter-increment: step-counter;
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  position: absolute;
  left: 30px;
  top: 30px;
  opacity: 0.7;
}

.page-register__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  margin-left: 70px; /* Adjust for step number */
}

.page-register__step-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #f0f0f0;
  margin-left: 70px; /* Adjust for step number */
  margin-bottom: 20px;
}

.page-register__step-item .page-register__btn {
  margin-left: 70px; /* Adjust for step number */
}

/* Conditions Section */
.page-register__rules-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-register__rule-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  transition: background-color 0.3s ease;
}

.page-register__rule-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-register__rule-description {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

/* FAQ Section */
.page-register__faq-list {
  margin-top: 40px;
}

.page-register__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  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;
  font-size: 1.05em;
  line-height: 1.6;
  color: #cccccc;
}

.page-register__faq-answer p {
  margin-bottom: 15px;
}

.page-register__faq-answer .page-register__btn {
  margin-top: 10px;
}

/* CTA Section */
.page-register__cta-section {
  background-color: rgba(255, 215, 0, 0.1);
  padding: 80px 0;
  text-align: center;
}

.page-register__cta-title {
  color: #FFD700;
  font-size: 3.5em;
  margin-bottom: 25px;
}

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

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

@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-register__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-register__section {
    padding: 40px 0;
  }
  .page-register__section-title,
  .page-register__cta-title {
    font-size: 2em;
  }
  .page-register__section-intro,
  .page-register__cta-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-register__value-icon,
  .page-register__value-card img, /* Ensure all images in cards conform */
  .page-register__hero-image, /* Ensure hero image conforms */
  .page-register__steps-list img, /* Example if steps had images */
  .page-register__rules-list img, /* Example if rules had images */
  .page-register__faq-list img /* Example if faq had images */ {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px; /* Enforce min size for content images */
  }
  .page-register__value-icon {
    width: 100%; /* Ensure card images fill width */
    height: 250px; /* Maintain aspect ratio or suitable height */
    object-fit: cover;
  }
  .page-register__step-number {
    position: static;
    margin-bottom: 10px;
  }
  .page-register__step-title,
  .page-register__step-description,
  .page-register__step-item .page-register__btn {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
  .page-register__step-item {
    align-items: center;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }
  .page-register__cta-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__hero-description {
    font-size: 0.9em;
  }
  .page-register__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-register__section-title,
  .page-register__cta-title {
    font-size: 1.8em;
  }
  .page-register__value-card,
  .page-register__rule-item {
    padding: 20px;
  }
  .page-register__card-title,
  .page-register__rule-title {
    font-size: 1.3em;
  }
  .page-register__step-title {
    font-size: 1.5em;
  }
}