/* style/nh.css */

/* Custom Colors */
:root {
  --page-nh-bg-primary: #08160F;
  --page-nh-bg-card: #11271B;
  --page-nh-text-main: #F2FFF6;
  --page-nh-text-secondary: #A7D9B8;
  --page-nh-border: #2E7A4E;
  --page-nh-glow: #57E38D;
  --page-nh-gold: #F2C14E;
  --page-nh-divider: #1E3A2A;
  --page-nh-deep-green: #0A4B2C;
  --page-nh-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content */
.page-nh {
  color: var(--page-nh-text-main);
  background-color: var(--page-nh-bg-primary);
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

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

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

.page-nh__dark-section {
  background-color: var(--page-nh-bg-primary);
  color: var(--page-nh-text-main);
}

.page-nh__light-section {
  background-color: #11271B; /* Using Card BG as a lighter alternative in this context */
  color: var(--page-nh-text-main);
}

.page-nh__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--page-nh-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-nh__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--page-nh-text-secondary);
  text-align: justify;
}

.page-nh__highlight {
  color: var(--page-nh-gold);
  font-weight: bold;
}

.page-nh__text-link {
  color: var(--page-nh-glow);
  text-decoration: underline;
}

/* Hero Section */
.page-nh__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: var(--page-nh-bg-primary);
}

.page-nh__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-nh__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px 60px;
  box-sizing: border-box;
}

.page-nh__main-title {
  font-size: clamp(36px, 5vw, 60px); /* Using clamp for H1 as per instructions */
  color: var(--page-nh-gold);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.page-nh__description {
  font-size: 20px;
  color: var(--page-nh-text-secondary);
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Buttons */
.page-nh__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-nh__btn-primary,
.page-nh__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-nh__btn-primary {
  background: var(--page-nh-btn-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-nh__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-nh__btn-secondary {
  background-color: transparent;
  color: var(--page-nh-glow);
  border: 2px solid var(--page-nh-glow);
}

.page-nh__btn-secondary:hover {
  background-color: var(--page-nh-glow);
  color: var(--page-nh-bg-primary);
  transform: translateY(-2px);
}

/* Lists */
.page-nh__ordered-list,
.page-nh__unordered-list {
  list-style-position: inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-nh__ordered-list {
  list-style-type: decimal;
}

.page-nh__unordered-list {
  list-style-type: disc;
}

.page-nh__list-item {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--page-nh-text-secondary);
}

.page-nh__list-item strong {
  color: var(--page-nh-text-main);
}

/* Image content */
.page-nh__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Promo Cards */
.page-nh__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-nh__promo-card {
  background-color: var(--page-nh-bg-card);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--page-nh-border);
  transition: transform 0.3s ease;
}

.page-nh__promo-card:hover {
  transform: translateY(-5px);
}

.page-nh__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-nh__card-title {
  font-size: 24px;
  color: var(--page-nh-gold);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-nh__card-text {
  font-size: 16px;
  color: var(--page-nh-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-nh__card-button {
  width: 100%;
}

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

.page-nh__faq-item {
  background-color: var(--page-nh-bg-card);
  border: 1px solid var(--page-nh-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: var(--page-nh-text-main);
  background-color: var(--page-nh-deep-green);
  border-bottom: 1px solid var(--page-nh-border);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-nh__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-nh__faq-question:hover {
  background-color: var(--page-nh-border);
}

.page-nh__faq-qtext {
  flex-grow: 1;
}

.page-nh__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-nh-gold);
}

.page-nh__faq-answer {
  padding: 20px 25px;
  font-size: 17px;
  color: var(--page-nh-text-secondary);
  line-height: 1.7;
  background-color: var(--page-nh-bg-card);
}

/* CTA Bottom Section */
.page-nh__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: var(--page-nh-deep-green);
}

.page-nh__cta-buttons--bottom {
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-nh__hero-content {
    padding: 30px 20px 50px;
  }
  .page-nh__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-nh__text-block, .page-nh__list-item {
    font-size: 17px;
  }
  .page-nh__description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-nh__container,
  .page-nh__hero-content {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-nh__hero-section {
    padding-top: 10px !important;
  }

  .page-nh__hero-image,
  .page-nh__image-content,
  .page-nh__card-image,
  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-nh__hero-image-wrapper,
  .page-nh__section,
  .page-nh__promo-card,
  .page-nh__faq-item,
  .page-nh__cta-section,
  .page-nh__grid-container,
  .page-nh__faq-list,
  .page-nh__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-nh__main-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .page-nh__description {
    font-size: 16px;
  }

  .page-nh__btn-primary,
  .page-nh__btn-secondary,
  .page-nh a[class*="button"],
  .page-nh a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-nh__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-nh__promo-card {
    padding: 20px;
  }

  .page-nh__card-title {
    font-size: 20px;
  }

  .page-nh__card-text {
    font-size: 15px;
  }

  .page-nh__faq-question {
    font-size: 18px;
    padding: 15px 20px;
  }

  .page-nh__faq-answer {
    font-size: 16px;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-nh__section {
    padding: 40px 0;
  }
  .page-nh__section-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .page-nh__text-block, .page-nh__list-item {
    font-size: 16px;
  }
  .page-nh__description {
    font-size: 15px;
  }
  .page-nh__hero-content {
    padding: 20px 15px 40px;
  }
  .page-nh__main-title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .page-nh__promo-card {
    padding: 15px;
  }
}