.page-n-h {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #121212; /* Dark background */
  line-height: 1.6;
}

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

.page-n-h__section {
  padding: 60px 0;
}

.page-n-h__hero-section {
  background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
  color: #FFFFFF;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-n-h__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-n-h__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-n-h__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-n-h__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-n-h__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-n-h__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #B0B0B0;
}

.page-n-h__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-n-h__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A1A; /* Dark text for gold background */
  border: none;
}

.page-n-h__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-n-h__btn--secondary {
  background-color: #1E90FF; /* Deep Blue */
  color: #FFFFFF;
  border: none;
}

.page-n-h__btn--secondary:hover {
  background-color: #1a7ae0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-n-h__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-n-h__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-n-h__card {
  background-color: #222222;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-n-h__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-n-h__card-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #333;
}

.page-n-h__card-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-n-h__card-text {
  font-size: 1em;
  color: #B0B0B0;
  flex-grow: 1;
}

.page-n-h__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-n-h__benefits-item {
  background-color: #222222;
  border-left: 5px solid #1E90FF; /* Deep Blue accent */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-n-h__benefits-item:hover {
  transform: translateX(5px);
}

.page-n-h__benefits-item-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
}

.page-n-h__benefits-item-text {
  color: #B0B0B0;
  font-size: 1em;
}

.page-n-h__guide-list {
  list-style: none;
  padding: 0;
}

.page-n-h__guide-item {
  background-color: #222222;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-n-h__guide-item-title {
  font-size: 1.8em;
  color: #1E90FF; /* Deep Blue */
  margin-bottom: 15px;
}

.page-n-h__guide-item-text {
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-n-h__faq-item {
  background-color: #222222;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-n-h__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

.page-n-h__faq-question.active::after {
  content: '-';
}

.page-n-h__faq-answer {
  color: #B0B0B0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-n-h__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  transition: max-height 0.5s ease-in;
}

.page-n-h__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.85);
  border: 2px solid #FFD700;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 10px;
  animation: page-n-h__pulse 2s infinite;
  transform: translateX(120%); /* Initially off-screen */
  transition: transform 0.5s ease-out;
}

.page-n-h__floating-ad.active {
  transform: translateX(0); /* Slide in */
}

@keyframes page-n-h__pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.page-n-h__floating-ad-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
}

.page-n-h__floating-ad-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.page-n-h__floating-ad-text {
  font-size: 1.1em;
  font-weight: bold;
  color: #FFD700;
}

.page-n-h__floating-ad-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 15px;
  padding: 5px;
  line-height: 1;
}

.page-n-h__floating-ad-close:hover {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-n-h__hero-title {
    font-size: 3em;
  }
  .page-n-h__section-title {
    font-size: 2.2em;
  }
  .page-n-h__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-n-h__benefits-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-n-h__hero-section {
    padding: 80px 0;
  }
  .page-n-h__hero-title {
    font-size: 2.5em;
  }
  .page-n-h__hero-description {
    font-size: 1em;
  }
  .page-n-h__section-title {
    font-size: 2em;
  }
  .page-n-h__section-description {
    font-size: 0.95em;
  }
  .page-n-h__card-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-n-h__floating-ad {
    bottom: 10px;
    right: 10px;
    padding: 8px;
    flex-direction: column;
    text-align: center;
  }
  .page-n-h__floating-ad-image {
    width: 60px;
    height: 60px;
    margin: 0 0 10px 0;
  }
  .page-n-h__floating-ad-text {
    font-size: 0.9em;
    margin-bottom: 5px;
  }
  .page-n-h__floating-ad-close {
    font-size: 1.2em;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .page-n-h__hero-title {
    font-size: 2em;
  }
  .page-n-h__section-title {
    font-size: 1.8em;
  }
  .page-n-h__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-n-h__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-n-h__card-title {
    font-size: 1.4em;
  }
  .page-n-h__benefits-item-title, .page-n-h__guide-item-title {
    font-size: 1.3em;
  }
  .page-n-h__faq-question {
    font-size: 1.2em;
  }
}