/* style/n-h.css */
.page-n-h {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-n-h__hero-section {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-n-h__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.page-n-h__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-n-h__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-n-h__btn--primary {
  background-color: #FF4500;
  color: #fff;
  border: 2px solid #FF4500;
}

.page-n-h__btn--primary:hover {
  background-color: #e03c00;
  border-color: #e03c00;
  transform: translateY(-2px);
}

.page-n-h__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-n-h__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-n-h__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

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

.page-n-h__section--alt-bg {
  background-color: #eef2f5;
}

.page-n-h__section-title {
  font-size: 2.2em;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-n-h__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.page-n-h__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-n-h__image-container {
  flex: 1;
  min-width: 300px;
}

.page-n-h__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-n-h__text-content {
  flex: 2;
}

.page-n-h__text-content h3 {
  color: #FF4500;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-n-h__text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-n-h__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-n-h__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FF4500"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #333;
}

.page-n-h__list-ordered {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-n-h__list-ordered li {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333;
}

.page-n-h__list-ordered li strong {
  color: #1E90FF;
}

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

.page-n-h__list-check li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%231E90FF"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.05em;
  color: #333;
}

.page-n-h__call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 40px;
  color: #FF4500;
}

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

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

.page-n-h__card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h__card-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-n-h__card-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-n-h__card-text {
  color: #555;
  margin-bottom: 25px;
}

.page-n-h__buttons-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-n-h__feature-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-n-h__feature-item:hover {
  transform: translateY(-5px);
}

.page-n-h__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-n-h__feature-item h3 {
  font-size: 1.4em;
  color: #FF4500;
  margin-bottom: 10px;
}

.page-n-h__feature-item p {
  color: #555;
}

.page-n-h__faq-list {
  margin-top: 40px;
}

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

.page-n-h__faq-question {
  font-size: 1.3em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-n-h__faq-answer {
  color: #444;
}

.page-n-h__cta-bottom {
  background: linear-gradient(135deg, #1E90FF, #FF4500);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-n-h__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.page-n-h__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-n-h__hero-title {
    font-size: 2.2em;
  }
  .page-n-h__hero-description {
    font-size: 1.1em;
  }
  .page-n-h__section-title {
    font-size: 1.8em;
  }
  .page-n-h__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-n-h__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-n-h__image-container {
    order: -1; /* Image appears first on mobile for reverse layout */
  }
  .page-n-h__hero-buttons, .page-n-h__buttons-row {
    flex-direction: column;
    gap: 15px;
  }
  .page-n-h__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-n-h__hero-title {
    font-size: 1.8em;
  }
  .page-n-h__section-title {
    font-size: 1.6em;
  }
  .page-n-h__section-description {
    font-size: 1em;
  }
  .page-n-h__card, .page-n-h__feature-item, .page-n-h__faq-item {
    padding: 20px;
  }
  .page-n-h__card-title {
    font-size: 1.4em;
  }
  .page-n-h__feature-item h3 {
    font-size: 1.2em;
  }
  .page-n-h__faq-question {
    font-size: 1.1em;
  }
  .page-n-h__cta-title {
    font-size: 2em;
  }
  .page-n-h__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-n-h__hero-section, .page-n-h__section, .page-n-h__cta-bottom {
    padding: 50px 0;
  }
  .page-n-h__hero-title {
    font-size: 1.5em;
  }
  .page-n-h__hero-description {
    font-size: 0.9em;
  }
  .page-n-h__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-n-h__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-n-h__section-title {
    font-size: 1.4em;
  }
  .page-n-h__list li, .page-n-h__list-ordered li, .page-n-h__list-check li {
    font-size: 0.95em;
  }
  .page-n-h__cta-title {
    font-size: 1.8em;
  }
}