.page-index-registration-process {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-index-registration-process__hero-section {
  position: relative;
  background-color: #000000; /* Fallback if image fails to load */
  overflow: hidden;
  min-height: 600px; /* Ensure a minimum height for the hero section */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-index-registration-process__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  z-index: 1;
}

.page-index-registration-process__hero-content {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  width: 90%;
  z-index: 2;
  padding: 20px;
}

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

.page-index-registration-process__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-index-registration-process__hero-cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-registration-process__hero-cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-index-registration-process__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-index-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-registration-process__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

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

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

.page-index-registration-process__feature-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-process__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process__feature-icon {
  width: 250px;
  height: 187px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-index-registration-process__feature-description {
  color: #555555;
}

.page-index-registration-process__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-index-registration-process__cta-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-registration-process__cta-button:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-index-registration-process__registration-guide .page-index-registration-process__step {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.page-index-registration-process__registration-guide .page-index-registration-process__step:last-of-type {
  margin-bottom: 0;
}

.page-index-registration-process__step--reverse {
  flex-direction: row-reverse;
}

.page-index-registration-process__step-content {
  flex: 1;
}

.page-index-registration-process__step-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-registration-process__step-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-index-registration-process__step-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-index-registration-process__step-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-index-registration-process__step-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-registration-process__step-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-index-registration-process__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-registration-process__tips-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-index-registration-process__tips-list li p {
  margin: 0;
  color: #333333;
}

.page-index-registration-process__tips-list li strong {
  color: #000000;
}

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

.page-index-registration-process__security-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-index-registration-process__security-subtitle {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-registration-process__security-description {
  color: #555555;
}

.page-index-registration-process__troubleshooting-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.page-index-registration-process__troubleshooting-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.page-index-registration-process__troubleshooting-subtitle {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-registration-process__troubleshooting-description {
  color: #555555;
}

.page-index-registration-process__faq-items {
  margin-top: 40px;
}

.page-index-registration-process__faq-item {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-index-registration-process__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-registration-process__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-index-registration-process__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-registration-process__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eeeeee;
  margin-top: 10px;
}

.page-index-registration-process__faq-question.active + .page-index-registration-process__faq-answer {
  display: block;
}

.page-index-registration-process__final-cta {
  background-color: #000000; /* Dark background for final CTA */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-index-registration-process__final-cta-content {
  max-width: 900px;
}

.page-index-registration-process__final-cta .page-index-registration-process__section-title,
.page-index-registration-process__final-cta .page-index-registration-process__section-intro {
  color: #FFFFFF;
}

.page-index-registration-process__final-cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-registration-process__final-cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-5px);
}

.page-index-registration-process__copyright {
  margin-top: 60px;
  font-size: 0.9em;
  color: #aaaaaa;
}

/* Animation for elements */
.page-index-registration-process .is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-registration-process__hero-title {
    font-size: 3em;
  }
  .page-index-registration-process__hero-description {
    font-size: 1.2em;
  }
  .page-index-registration-process__registration-guide .page-index-registration-process__step {
    flex-direction: column;
    text-align: center;
  }
  .page-index-registration-process__step--reverse {
    flex-direction: column;
  }
  .page-index-registration-process__step-content {
    order: 2;
  }
  .page-index-registration-process__step-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  .page-index-registration-process {
    overflow-x: hidden;
  }
  .page-index-registration-process__hero-title {
    font-size: 2.2em;
  }
  .page-index-registration-process__hero-description {
    font-size: 1em;
  }
  .page-index-registration-process__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-registration-process__section-title {
    font-size: 2em;
  }
  .page-index-registration-process__section-intro {
    font-size: 1em;
  }
  .page-index-registration-process__feature-icon,
  .page-index-registration-process__step-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 150px; /* Ensure minimum size, roughly 4:3 aspect ratio */
  }
  .page-index-registration-process__registration-guide .page-index-registration-process__step {
    gap: 20px;
    margin-bottom: 60px;
  }
  .page-index-registration-process__step-title {
    font-size: 1.6em;
  }
  .page-index-registration-process__step-description {
    font-size: 0.95em;
  }
  .page-index-registration-process__step-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-registration-process__security-details {
    grid-template-columns: 1fr;
  }
  .page-index-registration-process__final-cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-index-registration-process__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-registration-process__hero-title {
    font-size: 1.8em;
  }
  .page-index-registration-process__hero-description {
    font-size: 0.9em;
  }
  .page-index-registration-process__hero-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-registration-process__section-title {
    font-size: 1.8em;
  }
  .page-index-registration-process__section-intro {
    font-size: 0.9em;
  }
  .page-index-registration-process__feature-item {
    padding: 20px;
  }
  .page-index-registration-process__feature-title {
    font-size: 1.3em;
  }
  .page-index-registration-process__feature-description {
    font-size: 0.9em;
  }
  .page-index-registration-process__step-title {
    font-size: 1.4em;
  }
  .page-index-registration-process__step-description {
    font-size: 0.85em;
  }
  .page-index-registration-process__final-cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-index-registration-process__copyright {
    margin-top: 40px;
  }
}