/* style/n-h.css */
:root {
  --primary-color: #0A2342;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #0A2342;
  --border-color: #e0e0e0;
}

.page-n-h {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

.page-n-h .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

/* Hero Banner Section */
.page-n-h .hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
  padding: 60px 0;
  text-align: center;
}

.page-n-h .hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.page-n-h .hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-n-h .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.page-n-h .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-n-h .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-n-h .hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-n-h .cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-n-h .cta-button.primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-n-h .cta-button.primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-n-h .cta-button.secondary {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.page-n-h .cta-button.secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* General Section Styling */
.page-n-h section {
  padding: 60px 0;
}

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

.page-n-h .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-n-h .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-dark);
}

.page-n-h .content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.page-n-h .benefit-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-n-h .benefit-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* Guide Section */
.page-n-h .step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-n-h .step-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.page-n-h .step-number {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: -60px auto 20px auto;
  border: 4px solid var(--background-light);
}

.page-n-h .step-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-n-h .step-text {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-n-h .step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.page-n-h .cta-area {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h .cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-n-h .cta-button.final {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-n-h .cta-button.final:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-n-h .lobby-card {
  background-color: var(--text-light);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .lobby-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-n-h .lobby-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-n-h .lobby-text {
  font-size: 0.95em;
  color: var(--text-dark);
}

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

.page-n-h .strategy-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .strategy-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-n-h .strategy-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-n-h .strategy-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* Promotions Section */
.page-n-h .promotions-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-n-h .promotions-section .section-title {
  color: var(--text-light);
}

.page-n-h .promotions-section .section-title::after {
  background-color: var(--secondary-color);
}

.page-n-h .promotions-section .section-description {
  color: rgba(255, 255, 255, 0.9);
}

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

.page-n-h .promo-card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
}

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

.page-n-h .promo-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-n-h .promo-text {
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-n-h .cta-button.small {
  padding: 10px 25px;
  font-size: 0.9em;
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-n-h .cta-button.small:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-n-h .channel-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-n-h .channel-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-n-h .channel-text {
  font-size: 0.95em;
  color: var(--text-dark);
}

.page-n-h .contact-info {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: var(--primary-color);
  font-weight: bold;
}

/* FAQ Section */
.page-n-h .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-n-h .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--text-light);
}

.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: #f5f5f5;
}

.page-n-h .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.page-n-h .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

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

.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: #f9f9f9;
  color: var(--text-dark);
}

.page-n-h .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 25px;
  border-top: 1px solid var(--border-color);
}

.page-n-h .faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.8;
}

/* Conclusion Section */
.page-n-h .conclusion-section {
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding-bottom: 80px;
}

.page-n-h .conclusion-section .section-title {
  color: var(--text-light);
}

.page-n-h .conclusion-section .section-title::after {
  background-color: var(--secondary-color);
}

.page-n-h .conclusion-section .section-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.page-n-h .cta-button.final {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  margin-top: 20px;
}

.page-n-h .cta-button.final:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

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

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

  .page-n-h .step-by-step, .page-n-h .benefit-grid, .page-n-h .lobby-grid, .page-n-h .strategy-grid, .page-n-h .promo-grid, .page-n-h .support-channels {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-n-h .hero-banner {
    padding: 40px 0;
  }
  
  .page-n-h .hero-title {
    font-size: 2em;
  }

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

  .page-n-h .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-n-h .cta-button {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-n-h section {
    padding: 40px 0;
  }

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

  .page-n-h .section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-n-h .step-number {
    margin-top: -50px;
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }

  .page-n-h .step-title {
    font-size: 1.4em;
  }
  
  .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;
  }
}

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

  .page-n-h .hero-subtitle {
    font-size: 0.9em;
  }

  .page-n-h .cta-button {
    width: 90%;
  }

  .page-n-h .section-title {
    font-size: 1.5em;
  }

  .page-n-h .step-number {
    margin-top: -40px;
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }
}

/* Link styling for better contrast */
.page-n-h a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-n-h a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Ensure highlight color has good contrast on primary background */
.page-n-h .promotions-section .highlight,
.page-n-h .conclusion-section .highlight {
  color: var(--secondary-color);
}

/* Ensure highlight color has good contrast on light background */
.page-n-h .introduction-section .highlight,
.page-n-h .benefits-section .highlight,
.page-n-h .guide-section .highlight,
.page-n-h .lobbies-section .highlight,
.page-n-h .strategies-section .highlight,
.page-n-h .support-section .highlight,
.page-n-h .faq-section .highlight {
  color: var(--primary-color);
}

/* Specific link colors for sections with dark background */
.page-n-h .promotions-section a,
.page-n-h .conclusion-section a {
  color: var(--secondary-color);
}

.page-n-h .promotions-section a:hover,
.page-n-h .conclusion-section a:hover {
  color: #e6c200;
  text-decoration: underline;
}