/* style/nh88-introduction-registration-process.css */
.page-nh88-introduction-registration-process {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  line-height: 1.6;
  background-color: #0A1931;
}

.page-nh88-introduction-registration-process__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1931 0%, #1A305A 100%);
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-nh88-introduction-registration-process__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[IMAGE:hero_main]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-nh88-introduction-registration-process__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-nh88-introduction-registration-process__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-nh88-introduction-registration-process__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-nh88-introduction-registration-process__hero-image-wrapper {
  display: none; /* Hide on small screens, show on larger */
}

.page-nh88-introduction-registration-process__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #0A1931;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-nh88-introduction-registration-process__section:last-of-type {
  border-bottom: none;
}

.page-nh88-introduction-registration-process__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-nh88-introduction-registration-process__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-nh88-introduction-registration-process__features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.page-nh88-introduction-registration-process__feature-item {
  background-color: #1A305A;
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 calc(33% - 40px);
  min-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nh88-introduction-registration-process__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-nh88-introduction-registration-process__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: center;
}

.page-nh88-introduction-registration-process__registration-steps {
  background-color: #0F203D;
}

.page-nh88-introduction-registration-process__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-nh88-introduction-registration-process__step-item {
  background-color: #1A305A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-nh88-introduction-registration-process__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A1931;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-nh88-introduction-registration-process__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-nh88-introduction-registration-process__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-nh88-introduction-registration-process__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
}

.page-nh88-introduction-registration-process__list li {
  background-color: #0F203D;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-nh88-introduction-registration-process__list--checklist li {
  position: relative;
  padding-left: 40px;
  background-color: transparent;
  border-left: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.page-nh88-introduction-registration-process__list--checklist li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  font-weight: bold;
}

.page-nh88-introduction-registration-process__important-notes {
  background-color: #0A1931;
}

.page-nh88-introduction-registration-process__faq-item {
  background-color: #1A305A;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-nh88-introduction-registration-process__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-nh88-introduction-registration-process__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-nh88-introduction-registration-process__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
  padding: 0 20px 20px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-nh88-introduction-registration-process__faq-question.active + .page-nh88-introduction-registration-process__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-nh88-introduction-registration-process__cta {
  text-align: center;
  background-color: #0F203D;
  padding: 80px 20px;
}

.page-nh88-introduction-registration-process__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  margin-top: 30px;
  cursor: pointer;
  border: none;
}

.page-nh88-introduction-registration-process__btn--primary {
  background-color: #FFD700;
  color: #0A1931;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-nh88-introduction-registration-process__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-nh88-introduction-registration-process__btn--large {
  padding: 20px 45px;
  font-size: 1.5em;
}

.page-nh88-introduction-registration-process__contact-prompt {
  margin-top: 30px;
  font-size: 1.1em;
}

.page-nh88-introduction-registration-process__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-nh88-introduction-registration-process__link:hover {
  color: #E6C200;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-nh88-introduction-registration-process__hero-title {
    font-size: 2.8em;
  }
  .page-nh88-introduction-registration-process__section-title {
    font-size: 2em;
  }
  .page-nh88-introduction-registration-process__feature-item {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .page-nh88-introduction-registration-process__hero {
    padding: 60px 15px;
  }
  .page-nh88-introduction-registration-process__hero-title {
    font-size: 2.2em;
  }
  .page-nh88-introduction-registration-process__hero-subtitle {
    font-size: 1em;
  }
  .page-nh88-introduction-registration-process__section {
    padding: 40px 15px;
  }
  .page-nh88-introduction-registration-process__section-title {
    font-size: 1.8em;
  }
  .page-nh88-introduction-registration-process__feature-item {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-nh88-introduction-registration-process__step-by-step {
    grid-template-columns: 1fr;
  }
  .page-nh88-introduction-registration-process__btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-nh88-introduction-registration-process__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-nh88-introduction-registration-process__faq-question {
    font-size: 1.2em;
  }
  .page-nh88-introduction-registration-process__faq-answer {
    font-size: 1em;
  }
}