.page-nh {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

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

.page-nh__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  background-color: #0a0909; /* Dark background to complement blue/red */
  color: #FFFFFF;
}

.page-nh__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure hero image can be wide */
  margin-bottom: 20px;
}

.page-nh__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-nh__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-nh__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Use clamp for H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #6FA3FF; /* Use an accent color for the title */
}

.page-nh__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #D6E2FF;
}

.page-nh__hero-cta-button,
.page-nh__how-to-play-cta-button,
.page-nh__cta-bottom-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-nh__hero-cta-button:hover,
.page-nh__how-to-play-cta-button:hover,
.page-nh__cta-bottom-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-nh__intro-section,
.page-nh__features-section,
.page-nh__how-to-play-section,
.page-nh__faq-section,
.page-nh__cta-bottom-section {
  padding: 60px 0;
  text-align: center;
}

.page-nh__intro-heading,
.page-nh__features-heading,
.page-nh__how-to-play-heading,
.page-nh__faq-heading,
.page-nh__cta-bottom-heading {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2F6BFF;
}

.page-nh__intro-text,
.page-nh__cta-bottom-description {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #1F2D3D;
}

.page-nh__intro-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-nh__feature-card,
.page-nh__step-card,
.page-nh__faq-item {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #D6E2FF;
}

.page-nh__feature-card:hover,
.page-nh__step-card:hover {
  transform: translateY(-5px);
}

.page-nh__feature-icon {
  width: 200px; /* Min size */
  height: 150px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-nh__feature-title,
.page-nh__step-title,
.page-nh__faq-question {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-nh__feature-description,
.page-nh__step-description,
.page-nh__faq-answer {
  font-size: 1em;
  line-height: 1.6;
}

.page-nh__step-number {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.page-nh__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-nh__faq-item {
  text-align: left;
}

.page-nh__faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  margin-bottom: 10px; /* Adjusted for better spacing */
}

.page-nh__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #2F6BFF;
}

.page-nh__faq-answer {
  display: none; /* Hidden by default, will be toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #D6E2FF;
}

.page-nh__faq-item.active .page-nh__faq-answer {
  display: block;
}

.page-nh__faq-item.active .page-nh__faq-question::after {
  content: '-';
}

.page-nh__cta-bottom-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-nh__cta-bottom-heading {
  color: #FFFFFF;
  font-size: 2.8em;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .page-nh__hero-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

  .page-nh__intro-heading,
  .page-nh__features-heading,
  .page-nh__how-to-play-heading,
  .page-nh__faq-heading,
  .page-nh__cta-bottom-heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-nh__hero-section {
    padding-top: 10px; /* Small top padding */
  }
  .page-nh__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-nh__hero-description {
    font-size: 1em;
  }

  .page-nh__intro-heading,
  .page-nh__features-heading,
  .page-nh__how-to-play-heading,
  .page-nh__faq-heading,
  .page-nh__cta-bottom-heading {
    font-size: 1.8em;
  }

  .page-nh__intro-text,
  .page-nh__cta-bottom-description {
    font-size: 0.95em;
  }

  .page-nh__features-grid,
  .page-nh__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-nh__feature-card,
  .page-nh__step-card {
    padding: 20px;
  }

  .page-nh__feature-title,
  .page-nh__step-title,
  .page-nh__faq-question {
    font-size: 1.3em;
  }

  .page-nh__feature-description,
  .page-nh__step-description,
  .page-nh__faq-answer {
    font-size: 0.9em;
  }

  /* Mobile content image overflow prevention */
  .page-nh img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-nh__hero-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-nh__hero-cta-button,
  .page-nh__how-to-play-cta-button,
  .page-nh__cta-bottom-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-nh__intro-heading,
  .page-nh__features-heading,
  .page-nh__how-to-play-heading,
  .page-nh__faq-heading,
  .page-nh__cta-bottom-heading {
    font-size: 1.5em;
  }
}