.page-n-h {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5;
}

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

.page-n-h section {
  padding: 60px 0;
  text-align: center;
}

.page-n-h section:nth-of-type(even) {
  background-color: #ebebeb;
}

.page-n-h h1,
.page-n-h h2 {
  color: #000080; /* Dark Blue */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-n-h h1 {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-n-h h2 {
  font-size: 2.2em;
}

.page-n-h h3 {
  color: #000080; /* Dark Blue */
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-n-h p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-n-h .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #FFD700;
}

.page-n-h .cta-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-n-h .cta-button-secondary {
  display: inline-block;
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #000080;
  margin-top: 20px;
}

.page-n-h .cta-button-secondary:hover {
  background-color: #000066;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-n-h .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000080, #000066); /* Dark blue gradient */
  overflow: hidden;
}

.page-n-h .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-n-h .hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

.page-n-h .hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  width: 100%;
}

.page-n-h .hero-content h1 {
  color: #FFD700; /* Gold */
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-n-h .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Section Intro */
.page-n-h .section-intro .image-with-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.page-n-h .section-intro .content-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* Benefits Section */
.page-n-h .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h .benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h .benefit-item .benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-n-h .benefit-item h3 {
  color: #000080;
  font-size: 1.4em;
}

.page-n-h .benefit-item p {
  font-size: 1em;
  color: #555;
}

/* Download Section */
.page-n-h .download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h .step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-n-h .step-item .step-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-n-h .step-item h3 {
  color: #000080;
  font-size: 1.3em;
}

.page-n-h .step-item p {
  font-size: 0.95em;
  color: #666;
}

/* Games Section */
.page-n-h .game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h .game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h .game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-n-h .game-card h3 {
  padding: 15px 20px 0;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-n-h .game-card h3 a {
  color: #FFD700; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-n-h .game-card h3 a:hover {
  color: #e0b800;
}

.page-n-h .game-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555;
}

.page-n-h .section-games ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  display: inline-block;
}

.page-n-h .section-games ul li {
  background-color: #f9f9f9;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  border-left: 5px solid #FFD700;
  font-size: 1.1em;
  color: #333;
}

.page-n-h .section-games ul li strong {
  color: #000080;
}

/* Promotions Section */
.page-n-h .promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h .promo-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .promo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h .promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-n-h .promo-item h3 {
  padding: 15px 20px 0;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-n-h .promo-item h3 a {
  color: #FFD700; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-n-h .promo-item h3 a:hover {
  color: #e0b800;
}

.page-n-h .promo-item p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555;
}

/* Safety & Support Section */
.page-n-h .safety-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h .safety-support-grid .item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-n-h .safety-support-grid .item h3 {
  color: #000080;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-n-h .safety-support-grid .item p {
  font-size: 1em;
  color: #555;
}

/* FAQ Section */
.page-n-h .section-faq {
  background-color: #f9f9f9;
}

.page-n-h .faq-container {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-n-h .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-n-h .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-n-h .faq-question:hover {
  background: #f0f0f0;
}

.page-n-h .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #000080;
}

.page-n-h .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-n-h .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #e0b800;
}

.page-n-h .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fff;
}

.page-n-h .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 25px;
  border-top: 1px solid #eee;
}

.page-n-h .faq-answer p {
  margin-bottom: 0;
  color: #444;
  font-size: 1.05em;
}

/* Blog Section */
.page-n-h .blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h .article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h .article-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-n-h .article-card h3 {
  padding: 15px 20px 0;
  font-size: 1.35em;
  margin-bottom: 10px;
}

.page-n-h .article-card h3 a {
  color: #000080; /* Dark Blue */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-n-h .article-card h3 a:hover {
  color: #FFD700;
}

.page-n-h .article-card p {
  padding: 0 20px;
  font-size: 0.95em;
  color: #555;
}

.page-n-h .article-date {
  display: block;
  padding: 10px 20px 20px;
  font-size: 0.85em;
  color: #999;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h h1 {
    font-size: 2.5em;
  }

  .page-n-h h2 {
    font-size: 2em;
  }

  .page-n-h .hero-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .page-n-h section {
    padding: 40px 0;
  }

  .page-n-h h1 {
    font-size: 2em;
  }

  .page-n-h h2 {
    font-size: 1.8em;
  }

  .page-n-h h3 {
    font-size: 1.4em;
  }

  .page-n-h p {
    font-size: 1em;
  }

  .page-n-h .cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-n-h .cta-button-secondary {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-n-h .hero-image {
    max-height: 300px;
    margin-bottom: 30px;
  }

  .page-n-h .hero-content p {
    font-size: 1.1em;
  }

  .page-n-h .benefits-grid, .page-n-h .download-steps, .page-n-h .game-cards-grid, .page-n-h .promo-list, .page-n-h .safety-support-grid, .page-n-h .blog-articles-grid {
    grid-template-columns: 1fr;
  }

  .page-n-h .section-intro .image-with-text {
    flex-direction: column;
  }

  .page-n-h .section-intro .content-image {
    margin-bottom: 20px;
  }

  .page-n-h .faq-question {
    padding: 15px 20px;
  }

  .page-n-h .faq-question h3 {
    font-size: 1.1em;
  }

  .page-n-h .faq-toggle {
    font-size: 20px;
  }

  .page-n-h .faq-answer {
    padding: 0 20px;
  }

  .page-n-h .faq-item.active .faq-answer {
    padding: 15px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-n-h h1 {
    font-size: 1.8em;
  }

  .page-n-h h2 {
    font-size: 1.6em;
  }

  .page-n-h .hero-content p {
    font-size: 1em;
  }

  .page-n-h .cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
}