/* style/n-h.css */
.page-n-h {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  background-color: #0A246A; /* Primary dark blue background */
}

.page-n-h__bg--dark {
  background-color: #0A1F50; /* Slightly darker variant for alternating sections */
}

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

.page-n-h__section {
  padding: 80px 0;
  text-align: center;
}

.page-n-h__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-n-h__section-intro {
  font-size: 1.2em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Hero Section */
.page-n-h__hero-section {
  background: linear-gradient(135deg, #0A246A 0%, #000000 100%); /* Dark gradient for hero */
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-n-h__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_light_patterns,gaming_texture,subtle_glow]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-n-h__hero-section .page-n-h__container {
  position: relative;
  z-index: 1;
}

.page-n-h__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Gold for hero title */
  margin-bottom: 25px;
  font-weight: 900;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-n-h__hero-description {
  font-size: 1.4em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-n-h__hero-actions .page-n-h__btn {
  margin: 0 15px;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* Buttons */
.page-n-h__btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: none;
  text-align: center;
}

.page-n-h__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A246A; /* Dark blue */
}

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

.page-n-h__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-n-h__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A246A;
  transform: translateY(-3px);
}

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

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

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

.page-n-h__feature-item {
  background-color: #1A387E; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-n-h__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.page-n-h__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-n-h__feature-description {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.6;
}

/* CTA Card */
.page-n-h__cta-card {
  background-color: #FFD700; /* Gold background */
  color: #0A246A; /* Dark blue text */
  padding: 40px;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-n-h__cta-card p {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 25px;
}

.page-n-h__cta-card .page-n-h__btn--primary {
  background-color: #0A246A;
  color: #FFD700;
  border: 2px solid #0A246A;
}

.page-n-h__cta-card .page-n-h__btn--primary:hover {
  background-color: #0A1F50;
  color: #FFD700;
}

/* Game Types Section */
.page-n-h__game-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-n-h__game-type-item {
  background-color: #1A387E;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-n-h__game-type-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-n-h__game-type-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
}

/* Guide Section */
.page-n-h__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-n-h__step-item {
  background-color: #0A246A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-n-h__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #FFD700;
  color: #0A246A;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-n-h__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-n-h__step-description {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-n-h__step-item .page-n-h__btn--small {
  align-self: flex-start;
}

/* Tips Section */
.page-n-h__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-n-h__tip-list li {
  background-color: #1A387E;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 50px;
}

.page-n-h__tip-list li::before {
  content: '✓';
  color: #FFD700;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.page-n-h__tip-highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-n-h__promo-item {
  background-color: #0A246A;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-n-h__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-n-h__promo-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
  flex-grow: 1;
}

/* App Section */
.page-n-h__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.page-n-h__app-text {
  max-width: 600px;
  margin-bottom: 40px;
}

.page-n-h__app-text .page-n-h__section-title {
  text-align: left;
}

.page-n-h__app-text .page-n-h__section-intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-n-h__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-n-h__app-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-n-h__app-benefits li .page-n-h__icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.page-n-h__app-mockup {
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.page-n-h__safety-item {
  background-color: #0A246A;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h__safety-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-n-h__safety-description {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.6;
}

/* Support Section */
.page-n-h__contact-methods {
  margin-top: 40px;
}

.page-n-h__contact-methods p {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-n-h__contact-methods ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.page-n-h__contact-methods li {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #E0E0E0;
  background-color: #1A387E;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-n-h__contact-methods li .page-n-h__icon {
  color: #FFD700;
  font-size: 1.4em;
  margin-right: 12px;
}

/* Final CTA Section */
.page-n-h__final-cta-section .page-n-h__section-title {
  font-size: 3em;
}

.page-n-h__final-cta-section .page-n-h__section-intro {
  font-size: 1.3em;
}

.page-n-h__final-cta-actions {
  margin-top: 40px;
}

.page-n-h__final-cta-actions .page-n-h__btn {
  margin: 0 15px;
}

/* Icons (simple font-based for example, replace with actual SVGs or images if needed) */
.page-n-h__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  /* Placeholder for actual icon styles */
  /* Example using a simple square, in a real scenario use font-awesome or SVG */
  background-color: #FFD700;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.page-n-h__icon--mobile {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M17 1H7C5.9 1 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 20H9v-1h6v1zm2-3H7V6h10v12z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M17 1H7C5.9 1 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 20H9v-1h6v1zm2-3H7V6h10v12z"/></svg>');
}
.page-n-h__icon--fast {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.93-.49-4.14-1.36L7.8 17.63c1.42.79 3.09 1.23 4.67 1.23 4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5V5.26c-2.04.48-3.69 2.1-4.15 4.14H9v6H7V9.26c.48-2.04 2.1-3.69 4.14-4.15V8h2V5.26c2.04.48 3.69 2.1 4.15 4.14H15v6h2V9.26c.48-2.04 2.1-3.69 4.14-4.15V8h2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.93-.49-4.14-1.36L7.8 17.63c1.42.79 3.09 1.23 4.67 1.23 4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5V5.26c-2.04.48-3.69 2.1-4.15 4.14H9v6H7V9.26c.48-2.04 2.1-3.69 4.14-4.15V8h2V5.26c2.04.48 3.69 2.1 4.14-4.15V8h2V5.26c.48-2.04 2.1-3.69 4.14-4.15V8h2z"/></svg>');
}
.page-n-h__icon--exclusive {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>');
}
.page-n-h__icon--secure {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-4 0h-4V6c0-1.1.9-2 2-2s2 .9 2 2v2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-4 0h-4V6c0-1.1.9-2 2-2s2 .9 2 2v2z"/></svg>');
}
.page-n-h__icon--gift {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 12c0-1.1-.9-2-2-2h-2V7c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v3H6c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h2v4c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-4h2c1.1 0 2-.9 2-2v-2zm-4 0h-2V7h2v5zm-4 7v-5H8v5h4z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 12c0-1.1-.9-2-2-2h-2V7c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v3H6c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h2v4c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-4h2c1.1 0 2-.9 2-2v-2zm-4 0h-2V7h2v5zm-4 7v-5H8v5h4z"/></svg>');
}
.page-n-h__icon--chat {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z"/></svg>');
}
.page-n-h__icon--phone {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.32.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.32.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}
.page-n-h__icon--email {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

/* Floating Promo Button */
.page-n-h__floating-promo {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.page-n-h__floating-btn {
  display: flex;
  align-items: center;
  background-color: #FFD700;
  color: #0A246A;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-n-h__floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #e6c200;
}

.page-n-h__floating-btn .page-n-h__icon {
  margin-right: 10px;
  width: 28px;
  height: 28px;
  font-size: 1.6em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h__hero-title {
    font-size: 3em;
  }
  .page-n-h__section-title {
    font-size: 2.2em;
  }
  .page-n-h__hero-description {
    font-size: 1.2em;
  }
  .page-n-h__app-content {
    flex-direction: column;
  }
  .page-n-h__app-text {
    margin-bottom: 30px;
  }
  .page-n-h__app-mockup {
    max-width: 300px;
  }
  .page-n-h__final-cta-actions {
    flex-direction: column;
    gap: 20px;
  }
  .page-n-h__final-cta-actions .page-n-h__btn {
    margin: 0;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-n-h__hero-section {
    padding: 80px 0;
  }
  .page-n-h__hero-title {
    font-size: 2.5em;
  }
  .page-n-h__section-title {
    font-size: 1.8em;
  }
  .page-n-h__section-intro {
    font-size: 1em;
  }
  .page-n-h__hero-actions {
    flex-direction: column;
    gap: 20px;
  }
  .page-n-h__hero-actions .page-n-h__btn {
    margin: 0;
    width: 80%;
  }
  .page-n-h__feature-grid, .page-n-h__game-type-grid, .page-n-h__guide-steps, .page-n-h__promo-grid, .page-n-h__safety-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h__tip-list li {
    padding: 15px 20px 15px 45px;
    font-size: 1em;
  }
  .page-n-h__tip-list li::before {
    left: 10px;
    font-size: 1.3em;
  }
  .page-n-h__floating-promo {
    bottom: 15px;
    right: 15px;
  }
  .page-n-h__floating-btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-n-h__floating-btn .page-n-h__icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .page-n-h__hero-title {
    font-size: 2em;
  }
  .page-n-h__section-title {
    font-size: 1.5em;
  }
  .page-n-h__hero-description {
    font-size: 0.9em;
  }
  .page-n-h__btn--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-n-h__cta-card p {
    font-size: 1.2em;
  }
  .page-n-h__app-text .page-n-h__section-title {
    font-size: 1.8em;
  }
  .page-n-h__final-cta-section .page-n-h__section-title {
    font-size: 2em;
  }
  .page-n-h__final-cta-actions .page-n-h__btn {
    width: 95%;
  }
}