:root {
  --ngp-bg: #f4f7fb;
  --ngp-card: #ffffff;
  --ngp-primary: #0f2a44;
  --ngp-secondary: #1f6feb;
  --ngp-accent: #ff9900;
  --ngp-green: #16a34a;
  --ngp-text: #1f2937;
  --ngp-muted: #6b7280;
  --ngp-border: #dbe4ef;
  --ngp-shadow: 0 12px 30px rgba(15, 42, 68, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--ngp-bg);
  color: var(--ngp-text);
  line-height: 1.65;
  font-size: 17px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ngp-secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.ngp-site {
  min-height: 100vh;
}

.ngp-container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

/* Bannière haute */

.ngp-top-banner {
  width: min(1140px, calc(100% - 32px));
  margin: 24px auto 0;
  background: #ffffff;
  border: 1px solid var(--ngp-border);
  border-radius: 24px;
  padding: 10px;
  box-shadow: var(--ngp-shadow);
}

.ngp-top-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* Contenu principal */

.ngp-content {
  background: #ffffff;
  border: 1px solid var(--ngp-border);
  border-radius: 24px;
  padding: 38px;
  box-shadow: var(--ngp-shadow);
  margin: 36px auto;
}

.ngp-content h1,
.ngp-content h2,
.ngp-content h3 {
  color: var(--ngp-primary);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.ngp-content h1 {
  font-size: 2.6rem;
}

.ngp-content h2 {
  font-size: 2rem;
  margin-top: 44px;
}

.ngp-content h3 {
  font-size: 1.45rem;
  margin-top: 32px;
}

.ngp-content h4 {
  color: var(--ngp-primary);
  font-size: 1.2rem;
  line-height: 1.3;
  margin-top: 28px;
}

.ngp-content p {
  margin: 0 0 18px;
}

.ngp-content ul,
.ngp-content ol {
  padding-left: 1.4rem;
  margin-top: 10px;
  margin-bottom: 22px;
}

.ngp-content li {
  margin-bottom: 8px;
}

.ngp-content hr {
  border: 0;
  height: 1px;
  background: var(--ngp-border);
  margin: 42px 0;
}

/* Citations / encadrés */

.ngp-content blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--ngp-accent);
  background: #fff7ed;
  border-radius: 14px;
  color: #7c2d12;
  font-weight: 600;
}

.ngp-content blockquote p:last-child {
  margin-bottom: 0;
}

/* Tableaux modernisés */

.ngp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--ngp-border);
}

.ngp-content table,
.ngp-content table td {
  background-color: #ffffff;
}

.ngp-content table[bgcolor],
.ngp-content td[bgcolor] {
  background-color: #ffffff !important;
}

.ngp-content th,
.ngp-content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ngp-border);
  text-align: left;
  vertical-align: top;
}

.ngp-content th {
  background: #eef4fb;
  color: var(--ngp-primary);
  font-weight: 800;
}

.ngp-content tr:last-child td {
  border-bottom: none;
}

/* Boutons et cartes pour les prochaines étapes */

.ngp-section {
  padding: 42px 0;
}

.ngp-section h2 {
  color: var(--ngp-primary);
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
}

.ngp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ngp-card {
  background: var(--ngp-card);
  border: 1px solid var(--ngp-border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--ngp-shadow);
}

.ngp-provider-card h3 {
  color: var(--ngp-primary);
  font-size: 1.45rem;
  margin: 14px 0 10px;
}

.ngp-provider-card p {
  color: var(--ngp-muted);
  margin-bottom: 22px;
}

.ngp-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.78rem;
  font-weight: 800;
}

.ngp-badge-blue {

  background: #dbeafe;
  color: #1d4ed8;
}

.ngp-badge-dark {
  background: #e5e7eb;
  color: #111827;
}

.ngp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ngp-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.ngp-btn-primary {
  background: var(--ngp-accent);
  color: #111827;
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.25);
}

.ngp-btn-secondary {
  background: var(--ngp-primary);
  color: #ffffff;
}

.ngp-btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
  background: var(--ngp-primary);
  color: #ffffff;
}

/* Footer */

.ngp-footer {
  margin-top: 30px;
  padding: 32px 0;
  background: #0f2a44;
  color: #dbeafe;
  text-align: center;
}

.ngp-footer p {
  margin: 0 0 8px;
}

.ngp-footer p:last-child {
  margin-bottom: 0;
}

.ngp-footer a {
  color: #ffffff;
  font-weight: 700;
}

/* Anciennes classes neutralisées progressivement */

.style354,
.Style192,
.Style435,
.Style409,
.Style437,
.Style440,
.style134 {
  color: var(--ngp-primary) !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

.style354,
.Style192,
.Style435 {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
}

.Style409,
.Style437,
.style134 {
  font-size: 1.7rem !important;
  font-weight: 800 !important;
}

.Style440 {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
}

.Style4401 {
  color: var(--ngp-accent) !important;
}

.Style424,
.Style423 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 800 !important;
}

/* Responsive */

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .ngp-container,
  .ngp-top-banner {
    width: min(100% - 24px, 1140px);
  }

  .ngp-top-banner {
    margin-top: 14px;
    border-radius: 18px;
    padding: 8px;
  }

  .ngp-top-banner img {
    border-radius: 14px;
  }

  .ngp-content {
    padding: 24px;
    border-radius: 18px;
    margin: 24px auto;
  }

  .ngp-content h1 {
    font-size: 2rem;
  }

  .ngp-content h2 {
    font-size: 1.65rem;
  }

  .ngp-content h3 {
    font-size: 1.35rem;
  }

  .ngp-grid-3 {
    grid-template-columns: 1fr;
  }

  .ngp-content table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .ngp-footer {
    margin-top: 24px;
    padding: 28px 16px;
  }
}

.ngp-brand-intro {
  margin: 18px 0 0;
}

.ngp-brand-intro p {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 22px;
  background: #ffffff;
  border: 1px solid var(--ngp-border);
  border-radius: 999px;
  color: var(--ngp-primary);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 42, 68, 0.06);
}

@media (max-width: 700px) {
  .ngp-brand-intro p {
    border-radius: 18px;
    font-size: 0.95rem;
    padding: 12px 16px;
  }
}