.page-register {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-register__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  position: relative;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden; /* To contain the image */
  display: flex;
  flex-direction: column;
  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: 0;
}

.page-register__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

.page-register__register-button,
.page-register__action-button,
.page-register__download-button,
.page-register__promo-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary actions */
  color: #000000; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  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__register-button:hover,
.page-register__action-button:hover,
.page-register__download-button:hover,
.page-register__promo-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

.page-register__section {
  margin-bottom: 60px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-register__section-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 30px;
  text-align: justify;
}

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

.page-register__feature-item {
  text-align: center;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register__feature-icon {
  width: 250px; /* Enforce min size */
  height: 200px; /* Enforce min size */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-register__feature-description {
  color: #555555;
  font-size: 1em;
}

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

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}

.page-register__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-register__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-register__step-description {
  color: #555555;
  font-size: 1.05em;
}

.page-register__steps-image {
  display: block;
  width: 800px;
  height: 600px;
  object-fit: contain;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__rules-list {
  list-style: disc;
  margin-left: 25px;
  margin-top: 30px;
  color: #444444;
  font-size: 1.1em;
}

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

.page-register__rules-image {
  display: block;
  width: 800px;
  height: 600px;
  object-fit: contain;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.page-register__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  background-color: #FCBC45;
  color: #000000; /* Dark text for contrast */
  border-bottom: 1px solid #e0a53b; /* Darker border for contrast */
}

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

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

.page-register__download-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-register__qr-code {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border: 5px solid #000000;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__mobile-app-image {
  display: block;
  width: 800px;
  height: 600px;
  object-fit: contain;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-register__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.page-register__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-register__promo-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-register__promo-description {
  color: #555555;
  font-size: 1.05em;
  margin-bottom: 25px;
  padding: 0 20px;
}

/* 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.2em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: 400px;
  }
  .page-register__hero-container {
    padding: 60px 15px;
  }
  .page-register__hero-title {
    font-size: 2.5em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__register-button,
  .page-register__action-button,
  .page-register__download-button,
  .page-register__promo-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-register__content-area {
    padding: 40px 15px;
  }
  .page-register__section {
    padding: 30px 20px;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__features-grid,
  .page-register__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__step-item::before {
    margin: 0 0 20px 0;
  }
  .page-register__steps-image,
  .page-register__rules-image,
  .page-register__mobile-app-image {
    width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure images are responsive */
  }
  .page-register__feature-icon {
    width: 250px; /* Maintain min size */
    height: 200px; /* Maintain min size */
  }
  .page-register__qr-code {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 2em;
  }
  .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__feature-icon {
    width: 200px; /* Maintain min size */
    height: 150px; /* Maintain min size */
  }
  .page-register__promo-image {
    height: 200px;
  }
}