    /* ============================================
       LNSP – Refonte UI/UX
       Palette : Navy #1A3A5C | Green #2E7D32 | Yellow #facf33 | Light #F4F7FA
       ============================================ */

    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Roboto+Slab:wght@400;700&display=swap');

    :root {
      --navy: #1A3A5C;
      --navy-dark: #122740;
      --green: #2E7D32;
      --green-lt: #43A047;
      --gold: #facf33;
      --gold-lt: #f7c010;
      --light: #F4F7FA;
      --white: #FFFFFF;
      --gray-100: #F8F9FA --gray-200: #E9ECEF;
      --gray-500: #6C757D;
      --gray-700: #495057;
      --text: #212529;
      --radius: 10px;
      --shadow: 0 4px 24px rgba(26, 58, 92, .10);
      --shadow-hover: 0 8px 32px rgba(26, 58, 92, .18);
      --transition: all .28s ease;
    }

    /* ── Base ────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Roboto Slab', serif;
      line-height: 1.25;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    section {
      position: relative;
    }

    /* ── Utility ─────────────────────────────── */
    .text-navy {
      color: var(--navy);
    }

    .text-green {
      color: var(--green);
    }

    .text-gold {
      color: var(--gold);
    }

    .bg-navy {
      background: var(--navy);
    }

    .bg-green {
      background: var(--green);
    }

    .bg-light {
      background: var(--light);
    }

    .section-pad {
      padding: 80px 0;
    }

    .section-pad-sm {
      padding: 56px 0;
    }

    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--gray-500);
      max-width: 580px;
    }

    .inner-hero p {
      color: rgba(255, 255, 255, .72);
      font-size: .97rem !important;
      max-width: 600px;
    }

    .divider {
      width: 48px;
      height: 4px;
      background: var(--gold);
      border-radius: 4px;
      margin: 0 0 28px;
    }

    .divider-center {
      margin: 0 auto 28px;
    }

    /* ── TOP BAR ─────────────────────────────── */
    #topbar {
      background: var(--navy-dark);
      color: rgba(255, 255, 255, .75);
      font-size: .8rem;
      padding: 7px 0;
    }

    #topbar a {
      color: rgba(255, 255, 255, .75);
      transition: var(--transition);
    }

    #topbar a:hover {
      color: var(--gold);
    }

    #topbar .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .8);
      font-size: .8rem;
      transition: var(--transition);
    }

    #topbar .social-icon:hover {
      background: var(--gold);
      color: var(--navy);
    }

    /* ── NAVBAR ──────────────────────────────── */
    #mainNav {
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: var(--transition);
    }

    #mainNav .navbar-brand img {
      height: 54px;
    }

    #mainNav .nav-link {
      font-size: .88rem;
      font-weight: 600;
      color: var(--navy) !important;
      padding: 22px 14px !important;
      letter-spacing: .02em;
      text-transform: uppercase;
      transition: var(--transition);
      position: relative;
    }

    #mainNav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 14px;
      right: 14px;
      height: 3px;
      background: var(--green);
      border-radius: 2px 2px 0 0;
      transform: scaleX(0);
      transition: transform .24s ease;
    }

    #mainNav .nav-link:hover::after,
    #mainNav .nav-link.active::after {
      transform: scaleX(1);
    }

    #mainNav .nav-link:hover {
      color: var(--green) !important;
    }

    #mainNav .dropdown-menu {
      border: none;
      box-shadow: var(--shadow);
      border-radius: var(--radius);
      border-top: 3px solid var(--green);
      min-width: 240px;
      padding: 8px 0;
    }

    #mainNav .dropdown-item {
      font-size: .87rem;
      padding: 9px 20px;
      color: var(--navy);
      font-weight: 600;
      transition: var(--transition);
    }

    #mainNav .dropdown-item:hover,
    #mainNav .dropdown-item.active {
      background: var(--light);
      color: var(--green);
      padding-left: 26px;
    }

    /* ── Dropdown toggle indicator ───────────── */
    #mainNav .nav-link.dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    #mainNav .nav-link.dropdown-toggle::after {
      display: inline-block !important;
      position: static !important;
      content: '';
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid var(--navy);
      margin-left: 2px;
      transform: none !important;
      background: none;
      flex-shrink: 0;
      transition: transform .22s ease, border-top-color .22s ease;
    }

    #mainNav .nav-item.dropdown:hover>.nav-link.dropdown-toggle::after,
    #mainNav .nav-item.dropdown.show>.nav-link.dropdown-toggle::after {
      transform: rotate(180deg) !important;
      border-top-color: var(--green);
    }

    /* Pill badge on dropdown parent to signal sub-items */
    #mainNav .nav-link.dropdown-toggle .dd-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--green);
      color: #fff;
      font-size: .6rem;
      font-weight: 800;
      letter-spacing: .04em;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      margin-left: 3px;
      line-height: 1;
      flex-shrink: 0;
    }

    .btn-rdv {
      background: var(--green);
      color: var(--white) !important;
      border-radius: 24px !important;
      padding: 10px 22px !important;
      font-size: .84rem !important;
      letter-spacing: .04em;
      transition: var(--transition);
    }

    .btn-rdv:hover {
      background: var(--green-lt) !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(46, 125, 50, .3);
    }

    .btn-rdv::after {
      display: none !important;
    }

    /* ── HERO ────────────────────────────────── */
    #hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy-dark);
    }

    #hero .hero-img {
      position: absolute;
      inset: 0;
      background-image: url('assets/img/hero_bg_css.jpg');
      background-size: cover;
      background-position: center top;
      opacity: .35;
      transform: scale(1.04);
      transition: transform 8s ease;
    }

    #hero:hover .hero-img {
      transform: scale(1);
    }

    #hero .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(18, 39, 64, .92) 45%, rgba(18, 39, 64, .4) 100%);
    }

    #hero .hero-content {
      position: relative;
      z-index: 2;
      max-width: 640px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(249, 168, 37, .15);
      border: 1px solid rgba(249, 168, 37, .4);
      color: var(--gold);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 22px;
    }

    .hero-badge .dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse-dot 1.6s ease-in-out infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .4;
        transform: scale(.6);
      }
    }

    #hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--white);
      margin-bottom: 20px;
      line-height: 1.18;
    }

    #hero h1 span {
      color: var(--gold);
    }

    .prev-item p {
      font-size: 0.94rem !important;
    }

    #hero p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, .78);
      margin-bottom: 36px;
      max-width: 520px;
    }

    .btn-hero-primary {
      background: var(--green);
      color: var(--white);
      border-radius: 28px;
      padding: 14px 32px;
      font-weight: 700;
      font-size: .95rem;
      letter-spacing: .03em;
      transition: var(--transition);
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-hero-primary:hover {
      background: var(--green-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(46, 125, 50, .4);
      color: var(--white);
    }

    .btn-hero-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, .5);
      border-radius: 28px;
      padding: 12px 28px;
      font-weight: 600;
      font-size: .95rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-hero-secondary:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, .1);
      color: var(--white);
    }

    .hero-stats {
      position: absolute;
      bottom: 40px;
      right: 0;
      z-index: 3;
      display: flex;
      gap: 2px;
    }

    .hero-stats-wrapper {
      position: absolute;
      bottom: 40px;
      right: 0;
      z-index: 3;
    }

    .hero-stats-wrapper .hero-stats {
      position: static;
      bottom: auto;
      right: auto;
    }

    .hero-stat-card {
      background: rgba(255, 255, 255, .10);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, .15);
      padding: 18px 24px;
      text-align: center;
      color: var(--white);
      transition: var(--transition);
    }

    .hero-stat-card:first-child {
      border-radius: var(--radius) 0 0 var(--radius);
    }

    .hero-stat-card:last-child {
      border-radius: 0 var(--radius) var(--radius) 0;
    }

    .hero-stat-card:hover {
      background: rgba(255, 255, 255, .18);
    }

    .hero-stat-card .num {
      font-family: 'Roboto Slab', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .hero-stat-card .lbl {
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: 4px;
      opacity: .8;
    }

    .scroll-cue {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, .5);
      font-size: .72rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      animation: bounce-down 2.2s ease-in-out infinite;
    }

    .scroll-cue i {
      font-size: 1rem;
    }

    @keyframes bounce-down {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(6px);
      }
    }

    /* ── INTRO BANNER ────────────────────────── */
    #intro-banner {
      background: var(--green);
      padding: 20px 0;
    }

    #intro-banner .ticker {
      display: flex;
      align-items: center;
      gap: 20px;
      overflow: hidden;
      color: rgba(255, 255, 255, .9);
      font-size: .9rem;
    }

    #intro-banner .ticker-label {
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 14px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ── SECTION MISSION (with images) ───────── */
    #mission .mission-icon-box {
      background: var(--white);
      border-radius: var(--radius);
      padding: 30px 24px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-bottom: 3px solid transparent;
      height: 100%;
    }

    #mission .mission-icon-box:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
      border-bottom-color: var(--green);
    }

    /* Image icons for missions */
    .mission-img-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 16px;
      object-fit: contain;
      display: block;
    }

    #mission .mission-icon-box h5 {
      font-size: .95rem;
      color: var(--navy);
      margin-bottom: 8px;
      font-weight: bold;
    }

    #mission .mission-icon-box p {
      font-size: .87rem;
      color: var(--gray-500);
      margin: 0;
    }

    /* ── SECTION DIRECTEUR ───────────────────── */
    #directeur {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      overflow: hidden;
    }

    #directeur::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(249, 168, 37, .06);
    }

    .directeur-img-wrap {
      position: relative;
    }

    .directeur-img-wrap img {
      border-radius: var(--radius);
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* .directeur-img-wrap::before {
      content: '';
      position: absolute;
      inset: 16px -16px -16px 16px;
      background: var(--gold);
      border-radius: var(--radius);
      opacity: .25;
      z-index: 0;
    } */

    .quote-mark {
      font-size: 5rem;
      line-height: .6;
      color: var(--gold);
      opacity: .35;
      font-family: Georgia, serif;
    }

    .directeur-quote {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, .88);
      line-height: 1.75;
      font-style: normal;
      border-left: 3px solid var(--gold);
      padding-left: 20px;
      margin: 16px 0 24px;
    }

    .directeur-sig {
      color: var(--gold);
      font-weight: 700;
      font-size: .95rem;
    }

    .directeur-role {
      color: rgba(255, 255, 255, .55);
      font-size: .83rem;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    /* ── SECTION EXAMENS (with images) ───────── */
    #examens {
      background: var(--light);
    }

    .exam-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 26px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-top: 4px solid transparent;
      height: 100%;
      cursor: default;
    }

    .exam-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-5px);
      border-top-color: var(--green);
    }

    /* Image icons for exam cards */
    .exam-img-icon {
      width: 56px;
      height: 56px;
      margin-bottom: 18px;
      object-fit: contain;
      display: block;
    }

    .exam-card h5 {
      color: var(--navy);
      font-size: 1rem;
      margin-bottom: 10px;
      font-weight: bold;

    }

    .exam-card p {
      color: var(--gray-500);
      font-size: .87rem;
      margin: 0;
    }

    .exam-card .exam-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-size: .84rem;
      font-weight: 700;
      margin-top: 14px;
      transition: var(--transition);
    }

    .exam-card .exam-link:hover {
      gap: 10px;
    }

    /* ── SECTION CHIFFRES AMÉLIORÉE ──────────── */
    #chiffres {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    #chiffres::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(250, 207, 51, 0.08), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    #chiffres::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(46, 125, 50, 0.06), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .stat-card-enhanced {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(2px);
      border-radius: 20px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .stat-card-enhanced::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
      transition: left 0.6s ease;
    }

    .stat-card-enhanced:hover::before {
      left: 100%;
    }

    .stat-card-enhanced:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(250, 207, 51, 0.4);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .stat-img-enhanced {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
      transition: transform 0.3s ease;
    }

    .stat-card-enhanced:hover .stat-img-enhanced {
      transform: scale(1.05);
    }

    .stat-number-enhanced {
      font-family: 'Roboto Slab', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      color: var(--gold);
      line-height: 1.1;
      margin-bottom: 8px;
      letter-spacing: 2px;
    }

    .stat-number-enhanced sup {
      font-size: 1.2rem;
      font-weight: 600;
      color: rgba(250, 207, 51, 0.8);
    }

    .stat-label-enhanced {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
      margin-top: 8px;
    }

    .stat-divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin: 12px auto 0;
      opacity: 0.5;
      transition: width 0.3s ease, opacity 0.3s ease;
    }

    .stat-card-enhanced:hover .stat-divider {
      width: 60px;
      opacity: 1;
    }

    /* ── SECTION À PROPOS ────────────────────── */
    #apropos .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 22px;
    }

    #apropos .about-feature-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: 10px;
      background: rgba(46, 125, 50, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 1.1rem;
    }

    #apropos .about-feature-text h6 {
      font-size: .92rem;
      color: var(--navy);
      margin-bottom: 3px;
    }

    #apropos .about-feature-text p {
      font-size: .85rem;
      color: var(--gray-500);
      margin: 0;
    }

    #apropos .microscope-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }

    #apropos .microscope-wrap img {
      max-height: 380px;
      filter: drop-shadow(0 12px 40px rgba(26, 58, 92, .2));
      transition: transform .4s ease;
    }

    #apropos .microscope-wrap:hover img {
      transform: scale(1.04) rotate(-2deg);
    }

    #apropos .microscope-wrap::before {
      content: '';
      position: absolute;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(46, 125, 50, .12), transparent 70%);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* ── SECTION ACTUALITÉS ──────────────────── */
    #actualites {
      background: var(--white);
    }

    .actu-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      background: var(--white);
      height: 100%;
    }

    .actu-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }

    .actu-card .actu-cat {
      display: inline-block;
      background: var(--green);
      color: var(--white);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 0 0 8px 0;
      margin-bottom: 12px;
    }

    .actu-card .actu-body {
      padding: 22px;
    }

    .actu-card .actu-date {
      font-size: .8rem;
      color: var(--gray-500);
      margin-bottom: 8px;
    }

    .actu-card h5 {
      font-size: .97rem;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .actu-card p {
      font-size: .86rem;
      color: var(--gray-500);
      margin: 0;
    }

    .actu-card .actu-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-weight: 700;
      font-size: .84rem;
      margin-top: 14px;
      transition: var(--transition);
    }

    .actu-card .actu-link:hover {
      gap: 10px;
    }

    /* ── SECTION PARTENAIRES ─────────────────── */
    #partenaires {
      background: var(--light);
      padding: 56px 0;
    }

    .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 24px;
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      filter: grayscale(40%) opacity(.8);
    }

    .partner-logo:hover {
      filter: grayscale(0%) opacity(1);
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }

    .partner-logo img {
      max-height: 52px;
      width: auto;
    }

    /* ── SECTION NEWSLETTER ──────────────────── */
    #newsletter {
      background: var(--green);
    }

    #newsletter h3 {
      color: var(--white);
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }

    #newsletter p {
      color: rgba(255, 255, 255, .8);
      font-size: .95rem;
    }

    .newsletter-form {
      max-width: 480px;
    }

    .newsletter-form .input-group {
      background: rgba(255, 255, 255, .12);
      border-radius: 30px;
      padding: 5px;
      border: 1px solid rgba(255, 255, 255, .25);
    }

    .newsletter-form input {
      background: transparent;
      border: none;
      width: 72%;
      color: var(--white);
      padding: 10px 18px;
      font-size: .92rem;
      outline: none !important;
      box-shadow: none !important;
    }

    .newsletter-form input::placeholder {
      color: rgba(255, 255, 255, .55);
    }

    .newsletter-form .btn-sub {
      background: var(--white);
      color: var(--green);
      font-weight: 700;
      font-size: .88rem;
      border-radius: 24px;
      padding: 10px 22px;
      border: none;
      transition: var(--transition);
      white-space: nowrap;
    }

    /* Icône avion en papier ajoutée en CSS (::before) et non dans le
       markup : le shortcode CF7 [submit] rend un <input> qui ne peut pas
       contenir de <i>. Centraliser l'icône ici évite le doublon d'icône
       observé quand le HTML et CF7 en ajoutaient chacun une. */
    .newsletter-form .btn-sub::before {
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      margin-right: 8px;
    }

    .newsletter-form .btn-sub.is-sent::before,
    .contact-form-wrap .btn-submit.is-sent::before {
      content: "\f00c"; /* check — état « envoyé / inscrit » */
    }

    .newsletter-form .btn-sub:hover {
      background: var(--gold);
      color: var(--navy);
    }

    /* ── FOOTER ──────────────────────────────── */
    #footer {
      background: var(--navy-dark);
      padding: 64px 0 0;
      color: rgba(255, 255, 255, .7);
      font-size: .9rem;
    }

    #footer h6 {
      color: var(--white);
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(249, 168, 37, .3);
    }

    #footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    #footer ul li {
      margin-bottom: 8px;
    }

    #footer ul li a {
      color: rgba(255, 255, 255, .65);
      transition: var(--transition);
      font-size: .875rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    #footer ul li a:hover {
      color: var(--gold);
      padding-left: 4px;
    }

    #footer ul li a i {
      font-size: .8rem;
      color: var(--gold);
      opacity: .7;
    }

    #footer .footer-contact-item {
      display: flex;
      gap: 14px;
      margin-bottom: 14px;
      align-items: flex-start;
    }

    #footer .footer-contact-item .ico {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      border-radius: 8px;
      background: rgba(249, 168, 37, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: .9rem;
    }

    #footer .footer-contact-item p {
      margin: 0;
      font-size: .85rem;
      line-height: 1.5;
    }

    #footer .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .7);
      margin-right: 8px;
      margin-bottom: 8px;
      transition: var(--transition);
      font-size: .9rem;
    }

    #footer .footer-social a:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-2px);
    }

    #footer .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 18px 0;
      margin-top: 48px;
      font-size: .8rem;
      color: rgba(255, 255, 255, .4);
    }

    /* ── BACK TO TOP ─────────────────────────── */
    #backToTop {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      border: none;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(46, 125, 50, .4);
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 999;
    }

    #backToTop.visible {
      opacity: 1;
      pointer-events: all;
    }

    #backToTop:hover {
      background: var(--green-lt);
      transform: translateY(-3px);
    }

    /* ── COOKIE NOTICE ───────────────────────── */
    #cookieNotice {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--navy-dark);
      color: rgba(255, 255, 255, .85);
      padding: 14px 20px;
      z-index: 2000;
      font-size: .85rem;
      border-top: 2px solid var(--gold);
      display: none;
    }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 991.98px) {
      .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 32px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .hero-stat-card {
        border-radius: var(--radius) !important;
      }

      #mainNav .nav-link {
        padding: 12px 14px !important;
      }

      #mainNav .nav-link::after {
        display: none;
      }

      /* Sous-menus en affichage mobile : déploiement en accordéon
         (statique, dans le flux) au lieu du positionnement flottant
         desktop. Masqué par défaut, affiché quand la classe .show est
         ajoutée par le clic (voir main.js). Les !important neutralisent
         les règles de Bootstrap (chargé après le CSS du thème) qui
         sinon repositionnent/masquent le menu. */
      #mainNav .navbar-collapse .dropdown-menu {
        display: none !important;
        position: static !important;
        float: none !important;
        transform: none !important;
        inset: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        border: none !important;
        border-top: none !important;
        box-shadow: none !important;
        padding: 0 0 6px !important;
        background: transparent !important;
      }

      #mainNav .navbar-collapse .dropdown-menu.show {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
        background: var(--light) !important;
        border-radius: 10px !important;
        border-left: 3px solid var(--green) !important;
        margin: 4px 0 10px !important;
        padding: 6px 0 !important;
      }

      #mainNav .navbar-collapse .dropdown-menu > li {
        display: block !important;
        width: 100% !important;
        list-style: none !important;
      }

      #mainNav .navbar-collapse .dropdown-item {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        height: auto !important;
        min-height: 40px !important;
        padding: 10px 18px 10px 34px !important;
        color: var(--navy) !important;
        background: transparent !important;
        font-size: .9rem !important;
        font-weight: 600 !important;
        white-space: normal !important;
        opacity: 1 !important;
        visibility: visible !important;
        line-height: 1.35 !important;
      }

      #mainNav .navbar-collapse .dropdown-item:hover,
      #mainNav .navbar-collapse .dropdown-item.active {
        color: var(--green) !important;
        background: rgba(46, 125, 50, .08) !important;
      }

      #mainNav .navbar-collapse .dropdown-item i {
        color: var(--green) !important;
      }
    }

    @media (max-width: 575.98px) {
      .section-pad {
        padding: 56px 0;
      }

      #hero {
        min-height: 100svh;
      }

      #hero h1 {
        font-size: 1.8rem;
      }

      .hero-stats {
        gap: 8px;
      }
    }

    /* ── ANIMATIONS ──────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
      animation: fadeUpAuto 0.6s ease forwards;
      animation-play-state: paused;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
      animation-play-state: running;
    }

    @keyframes fadeUpAuto {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up-d1 {
      transition-delay: .1s;
    }

    .fade-up-d2 {
      transition-delay: .2s;
    }

    .fade-up-d3 {
      transition-delay: .3s;
    }

    .fade-up-d4 {
      transition-delay: .4s;
    }

    /* ── WHATSAPP FLOAT ──────────────────────── */
    #whatsappFloat {
      position: fixed;
      bottom: 80px;
      right: 24px;
      width: 50px;
      height: 50px;
      background: #25D366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
      z-index: 998;
      transition: var(--transition);
      text-decoration: none;
    }

    #whatsappFloat:hover {
      background: #1ebe5d;
      transform: scale(1.1);
      color: #fff;
    }

    /* ── WHATSAPP BUTTON ─────────────────────── */
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      background: #25D366;
      color: #fff !important;
      font-weight: 700;
      font-size: .88rem;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      transition: var(--transition);
      letter-spacing: .02em;
      margin-top: 12px;
    }

    .whatsapp-btn:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
      color: #fff !important;
    }

    /* ── SOCIAL FEEDS ────────────────────────── */
    .social-pill {
      display: inline-flex;
      align-items: center;
      color: #fff;
      font-weight: 700;
      font-size: .85rem;
      padding: 8px 20px;
      border-radius: 30px;
      text-decoration: none;
      transition: var(--transition);
      letter-spacing: .03em;
    }

    .social-pill:hover {
      opacity: .85;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
    }

    .social-feed-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #fff;
    }

    .social-feed-header {
      color: #fff;
      font-weight: 700;
      font-size: .9rem;
      padding: 12px 18px;
      letter-spacing: .03em;
    }

    /* ── ACTU CARD WITH IMAGE ────────────────── */
    .actu-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--white);
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .actu-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .actu-img {
      position: relative;
      overflow: hidden;
      height: 200px;
    }

    .actu-img img {
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .actu-card:hover .actu-img img {
      transform: scale(1.05);
    }

    .actu-cat-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--green);
      color: var(--white);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
    }

    /* ══════════════════════════════════════════
       MODIFICATIONS V4
       ══════════════════════════════════════════ */

    /* ── NAVBAR BRAND – Logo + nom institution ── */
    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo {
      height: 52px;
      width: auto;
      flex-shrink: 0;
      border-radius: 6px;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
      border-left: 2px solid var(--green);
      padding-left: 12px;
    }

    .brand-title {
      font-family: 'Roboto Slab', serif;
      font-size: .88rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: .02em;
      white-space: nowrap;
    }

    .brand-subtitle {
      font-family: 'Roboto', sans-serif;
      font-size: .78rem;
      font-weight: 500;
      color: var(--green);
      letter-spacing: .03em;
      white-space: nowrap;
    }

    @media (max-width: 576px) {
      .brand-logo {
        height: 44px;
      }

      /* Le texte reste visible sur mobile */
      .brand-title {
        font-size: 0.7rem;
      }

      .brand-subtitle {
        font-size: 0.6rem;
      }
    }

    /* ── HERO SLIDER ─────────────────────────── */
    #hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy-dark);
    }

    /* Slides backgrounds */
    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(18, 39, 64, .82) 40%, rgba(18, 39, 64, .35) 100%);
    }

    /* Contents wrapper */
    .hero-contents {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 800px;
      margin: 0 auto 0 0;
      padding: 0 15px;
      padding-left: calc((100vw - min(100%, 1200px)) / 2 + 15px);
    }

    @media (max-width: 1200px) {
      .hero-contents {
        padding-left: 24px;
      }
    }

    .hero-content {
      display: none;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .hero-content.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
      animation: heroFadeIn .7s ease forwards;
    }

    @keyframes heroFadeIn {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Slider navigation */
    .hero-nav {
      position: absolute;
      bottom: 42px;
      right: 40px;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hero-nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, .45);
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: .9rem;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-nav-btn:hover {
      background: var(--green);
      border-color: var(--green);
    }

    .hero-dots {
      display: flex;
      gap: 8px;
    }

    .hero-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, .5);
      background: transparent;
      cursor: pointer;
      transition: var(--transition);
      padding: 0;
    }

    .hero-dot.active {
      background: var(--gold);
      border-color: var(--gold);
      transform: scale(1.2);
    }

    /* ── EXAMENS – layout 5 blocs (3 + 2) ───── */
    #examens .exam-card {
      height: 100%;
    }

    /* ── FOOTER logo spacing ─────────────────── */
    #footer .col-lg-3 img {
      margin-bottom: 8px;
    }

    /* ── EXAM CAROUSEL ───────────────────────── */
    .exam-carousel-outer {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
    }

    .exam-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: rgba(26, 58, 92, 0.85);
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .22s, transform .18s;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
      z-index: 2;
    }

    .exam-nav-btn:hover {
      background: var(--green);
      transform: scale(1.08);
    }

    .exam-carousel-track-outer {
      overflow: hidden;
      flex: 1;
      margin: 0 14px;
    }

    .exam-carousel-track {
      display: flex;
      transition: transform .45s cubic-bezier(.4, 0, .2, 1);
      will-change: transform;
    }

    .exam-carousel-slide {
      flex: 0 0 calc(33.333% - 10px);
      margin-right: 15px;
      box-sizing: border-box;
      margin-bottom: 18px;
    }

    .exam-carousel-slide:last-child {
      margin-right: 0;
    }

    /* dots identiques */
    .exam-carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 26px;
    }

    .exam-carousel-dots {
      display: flex;
      gap: 8px;
    }

    .exam-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid #aaa;
      background: transparent;
      cursor: pointer;
      padding: 0;
      transition: all .22s;
    }

    .exam-dot.active {
      background: var(--gold);
      border-color: var(--gold);
      transform: scale(1.2);
    }

    @media (max-width: 991.98px) {
      .exam-carousel-slide {
        flex: 0 0 calc(50% - 8px);
      }
    }

    @media (max-width: 575.98px) {
      .exam-carousel-slide {
        flex: 0 0 calc(85% - 6px);
      }
    }


    /* ================================
   GLOBAL — Compléments partagés (extraits des pages)
   ================================ */
    :root {
      --navy: #1A3A5C;
      --navy-dark: #122740;
      --green: #2E7D32;
      --green-lt: #43A047;
      --gold: #facf33;
      --light: #F4F7FA;
      --white: #FFFFFF;
      --gray-500: #6C757D;
      --text: #212529;
      --radius: 10px;
      --shadow: 0 4px 24px rgba(26, 58, 92, .10);
      --shadow-hover: 0 8px 32px rgba(26, 58, 92, .18);
      --transition: all .28s ease;
    }

    body {
      font-family: 'Roboto', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
    }

    .section-pad {
      padding: 60px 0;
    }

    .section-pad-sm {
      padding: 48px 0;
    }

    .section-title {
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      color: var(--navy);
      margin-bottom: 12px;
    }

    .divider {
      width: 48px;
      height: 4px;
      background: var(--gold);
      border-radius: 4px;
      margin: 0 0 24px;
    }

    .divider-center {
      margin: 0 auto 24px;
    }

    #mainNav {
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .dd-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--green);
      color: #fff;
      font-size: .6rem;
      font-weight: 800;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      margin-left: 3px;
    }

    .inner-hero {
      background: linear-gradient(105deg, var(--navy-dark) 0%, var(--navy) 100%);
      padding: 60px 0 48px;
      position: relative;
      overflow: hidden;
    }

    .inner-hero::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(250, 207, 51, .06);
      pointer-events: none;
    }

    .inner-hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 10%;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(46, 125, 50, .06);
      pointer-events: none;
    }

    .inner-hero h1 {
      color: var(--white);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      margin-bottom: 10px;
    }

    .inner-hero p {
      color: rgba(255, 255, 255, .72);
      font-size: .95rem;
      max-width: 600px;
    }

    .breadcrumb {
      background: transparent;
      padding: 0;
      margin: 0;
    }

    .breadcrumb-item a {
      color: rgba(255, 255, 255, .6);
    }

    .breadcrumb-item.active {
      color: var(--gold);
    }

    .breadcrumb-item+.breadcrumb-item::before {
      color: rgba(255, 255, 255, .4);
    }

    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }

    .about-feature-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      border-radius: 10px;
      background: rgba(46, 125, 50, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 1rem;
    }

    .about-feature-text h6 {
      font-size: .88rem;
      color: var(--navy);
      margin-bottom: 2px;
    }

    .about-feature-text p {
      font-size: .82rem;
      color: var(--gray-500);
      margin: 0;
    }

    .about-img-wrap {
      position: relative;
      max-width: 100% !important;
      margin: 0 auto;
    }

    .about-img-wrap img {
      border-radius: var(--radius);
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .about-img-wrap::before {
      content: '';
      position: absolute;
      inset: 12px -12px -12px 12px;
      background: var(--gold);
      border-radius: var(--radius);
      opacity: .2;
      z-index: 0;
    }

    .mission-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-bottom: 3px solid transparent;
      height: 100%;
    }

    .mission-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-3px);
      border-bottom-color: var(--green);
    }

    .mission-card img {
      width: 55px;
      height: 55px;
      margin: 0 auto 14px;
      object-fit: contain;
    }

    .mission-card h5 {
      font-size: .9rem;
      color: var(--navy);
      margin-bottom: 6px;
      font-weight: 700;
    }

    .mission-card p {
      font-size: .83rem;
      color: var(--gray-500);
      margin: 0;
    }

    .quality-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .quality-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      font-size: .88rem;
      color: var(--gray-500);
    }

    .quality-list li::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      margin-top: 8px;
    }

    .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px 20px;
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      filter: grayscale(40%) opacity(.8);
    }

    .partner-logo img {
      max-height: 48px;
      width: auto;
    }

    #footer {
      background: var(--navy-dark);
      padding: 56px 0 0;
      color: rgba(255, 255, 255, .7);
      font-size: .9rem;
    }

    #footer h6 {
      color: var(--white);
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 2px solid rgba(249, 168, 37, .3);
    }

    #footer ul li {
      margin-bottom: 6px;
    }

    #footer ul li a {
      color: rgba(255, 255, 255, .65);
      transition: var(--transition);
      font-size: .85rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    #footer ul li a i {
      font-size: .75rem;
      color: var(--gold);
      opacity: .7;
    }

    #footer .footer-contact-item {
      display: flex;
      gap: 12px;
      margin-bottom: 12px;
      align-items: flex-start;
    }

    #footer .footer-contact-item .ico {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      border-radius: 8px;
      background: rgba(249, 168, 37, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: .85rem;
    }

    #footer .footer-contact-item p {
      margin: 0;
      font-size: .82rem;
      line-height: 1.5;
    }

    #footer .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .7);
      margin-right: 6px;
      margin-bottom: 6px;
      transition: var(--transition);
      font-size: .85rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 16px 0;
      margin-top: 40px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .4);
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      background: #25D366;
      color: #fff !important;
      font-weight: 700;
      font-size: .84rem;
      padding: 8px 18px;
      border-radius: 30px;
      text-decoration: none;
      transition: var(--transition);
    }

    .whatsapp-btn:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
      color: #fff !important;
    }

    #backToTop {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      border: none;
      font-size: .9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(46, 125, 50, .4);
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 999;
    }

    #whatsappFloat {
      position: fixed;
      bottom: 80px;
      right: 24px;
      width: 46px;
      height: 46px;
      background: #25D366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      box-shadow: 0 4px 14px rgba(37, 211, 102, .45);
      z-index: 998;
      transition: var(--transition);
    }

    #whatsappFloat:hover {
      background: #1ebe5d;
      transform: scale(1.08);
      color: #fff;
    }

    #cookieNotice {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--navy-dark);
      color: rgba(255, 255, 255, .85);
      padding: 12px 20px;
      z-index: 2000;
      font-size: .82rem;
      border-top: 2px solid var(--gold);
      display: none;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .bg-light-section {
      background: var(--light);
    }

    .inner-hero p {
      color: rgba(255, 255, 255, .72);
      font-size: .95rem;
      max-width: 620px;
    }

    .inner-hero .breadcrumb {
      background: transparent;
      padding: 0;
      margin: 0;
    }

    .inner-hero .breadcrumb-item a {
      color: rgba(255, 255, 255, .6);
    }

    .inner-hero .breadcrumb-item.active {
      color: var(--gold);
    }

    .inner-hero .breadcrumb-item+.breadcrumb-item::before {
      color: rgba(255, 255, 255, .4);
    }

    .pagination-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin-top: 48px;
      flex-wrap: wrap;
    }

    .page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      border-radius: 8px;
      border: 2px solid #e2e8f0;
      background: var(--white);
      color: var(--navy);
      font-weight: 700;
      font-size: .88rem;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      padding: 0 8px;
    }

    .page-btn:hover,
    .page-btn.active {
      background: var(--green);
      border-color: var(--green);
      color: var(--white);
    }

    .page-btn.prev-next {
      gap: 6px;
      padding: 0 16px;
      font-size: .83rem;
    }

    :root {
      --exam-radius: 16px;
      --exam-shadow: 0 8px 28px rgba(7, 28, 31, .08);
      --exam-shadow-hover: 0 20px 40px rgba(7, 28, 31, .14);
      --transition: all 0.35s cubic-bezier(.2, .8, .2, 1);
    }

    body {
      background: #fcfdfe;
    }

    .inner-hero p {
      color: rgba(255, 255, 255, .72);
      font-size: .95rem;
      max-width: 640px;
    }

    .quick-facts {
      margin-top: -40px;
      position: relative;
      z-index: 5;
    }

    .qf-card {
      background: #fff;
      border-radius: var(--exam-radius);
      box-shadow: var(--exam-shadow);
      padding: 22px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: var(--transition);
      height: 100%;
    }

    .qf-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--exam-shadow-hover);
    }

    .qf-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(46, 125, 50, .1);
      color: var(--green);
      font-size: 1.2rem;
    }

    .qf-label {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: #6b7785;
      font-weight: 700;
    }

    .qf-val {
      font-size: .98rem;
      color: var(--navy);
      font-weight: 700;
    }

    .exam-section {
      padding: 20px 0;
    }

    .exam-section.bg-soft {
      background: #f5f8fb;
    }

    .section-head {
      margin-bottom: 20px;
    }

    .section-head .kicker {
      display: inline-block;
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }

    .section-head h2 {
      font-family: 'Roboto Slab', serif;
      color: var(--navy);
      font-size: clamp(1.5rem, 2.6vw, 2.1rem);
      margin: 0 0 12px;
    }

    .section-head p {
      color: #54616e;
      font-size: 1rem;
      line-height: 1.7;
      max-width: 760px;
    }

    .prose-block {
      background: #fff;
      border-radius: var(--exam-radius);
      padding: 26px 30px;
      box-shadow: var(--exam-shadow);
      border-left: 4px solid var(--green);
      font-size: 1rem;
      line-height: 1.8;
      color: #3b4754;
    }

    .alert-block {
      background: linear-gradient(115deg, var(--navy-dark), var(--navy) 55%, #16307a);
      color: #fff;
      border-radius: 20px;
      padding: 48px 44px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0, 0, 128, .25);
    }

    .alert-block .ab-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: rgba(250, 207, 51, .2);
      color: var(--gold);
      display: grid;
      place-items: center;
      font-size: 1.6rem;
      margin-bottom: 22px;
    }

    .alert-block h3 {
      font-family: 'Roboto Slab', serif;
      color: #fff;
      font-size: clamp(1.4rem, 2.4vw, 1.85rem);
      margin: 0 0 14px;
    }

    .alert-block p {
      color: rgba(255, 255, 255, .85);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .alert-block .ab-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .alert-block .ab-badges span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .18);
      color: #fff;
      font-size: .85rem;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 999px;
    }

    .cta-final {
      padding: 80px 0;
      background: #fff;
    }

    .cta-final h2 {
      text-align: center;
      font-family: 'Roboto Slab', serif;
      color: var(--navy);
      font-size: clamp(1.4rem, 2.4vw, 1.9rem);
      margin-bottom: 12px;
    }

    .cta-final .sub {
      text-align: center;
      color: #54616e;
      max-width: 600px;
      margin: 0 auto 40px;
    }

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

    @media (max-width: 767px) {
      .cta-grid {
        grid-template-columns: 1fr;
      }
    }

    .cta-btn {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      padding: 28px;
      border-radius: 18px;
      text-decoration: none;
      transition: var(--transition);
      background: #fff;
      box-shadow: var(--exam-shadow);
    }

    .cta-btn:hover {
      transform: translateY(-6px);
      box-shadow: var(--exam-shadow-hover);
    }

    .cta-btn .cta-i {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      background: rgba(46, 125, 50, .12);
      color: var(--green);
    }

    .cta-btn h5 {
      margin: 0 0 4px;
      font-weight: 700;
      color: var(--navy);
    }

    .cta-btn p {
      margin: 0;
      font-size: .88rem;
      color: #5f6c7a;
    }

    .cta-btn .arrow {
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
      color: var(--green);
    }

    .cta-btn:hover .arrow {
      gap: 12px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: .08s;
    }

    .reveal-delay-2 {
      transition-delay: .16s;
    }

    .reveal-delay-3 {
      transition-delay: .24s;
    }

    .reveal-delay-4 {
      transition-delay: .32s;
    }

    @media (max-width: 991px) {
      .exam-section {
        padding: 60px 0;
      }

      .quick-facts {
        margin-top: -30px;
      }
    }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--navy);
      margin-bottom: 14px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 18px 0;
      margin-top: 48px;
      font-size: .8rem;
      color: rgba(255, 255, 255, .4);
    }

    #whatsappFloat {
      position: fixed;
      bottom: 80px;
      right: 24px;
      width: 50px;
      height: 50px;
      background: #25D366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
      z-index: 998;
      transition: var(--transition);
    }

    .inner-hero {
      background: linear-gradient(105deg, var(--navy-dark) 0%, var(--navy) 100%);
      padding: 60px 0 48px;
      position: relative;
      overflow: hidden
    }

    .inner-hero::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(250, 207, 51, .06);
      pointer-events: none
    }

    .inner-hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 10%;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(46, 125, 50, .06);
      pointer-events: none
    }

    .inner-hero h1 {
      color: var(--white);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      margin-bottom: 10px
    }

    .inner-hero .breadcrumb {
      background: transparent;
      padding: 0;
      margin: 0
    }

    .inner-hero .breadcrumb-item a {
      color: rgba(255, 255, 255, .6)
    }

    .inner-hero .breadcrumb-item.active {
      color: var(--gold)
    }

    .inner-hero .breadcrumb-item+.breadcrumb-item::before {
      color: rgba(255, 255, 255, .4)
    }

    .brand-title {
      font-family: 'Roboto Slab', serif;
      font-size: .88rem;
      font-weight: 700;
      color: var(--navy);
      white-space: nowrap;
    }

    #mainNav .nav-link.dropdown-toggle::after {
      display: inline-block !important;
      position: static !important;
      content: '';
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid var(--navy);
      margin-left: 2px;
      transform: none !important;
      background: none;
      flex-shrink: 0;
    }

    .btn-rdv {
      background: var(--green);
      color: var(--white) !important;
      border-radius: 24px !important;
      padding: 10px 22px !important;
      font-size: .84rem !important;
      transition: var(--transition);
    }

    .btn-rdv:hover {
      background: var(--green-lt) !important;
      transform: translateY(-1px);
    }

    .inner-hero {
      background: linear-gradient(105deg, var(--navy-dark) 0%, var(--navy) 100%);
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }

    .inner-hero::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: rgba(250, 207, 51, .06);
      pointer-events: none;
    }

    .inner-hero h1 {
      color: var(--white);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      margin-bottom: 12px;
    }

    .inner-hero p {
      color: rgba(255, 255, 255, .72);
      font-size: 1rem;
      max-width: 600px;
    }

    #footer h6 {
      color: var(--white);
      font-weight: 700;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(249, 168, 37, .3);
    }

    #footer .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .7);
      margin-right: 8px;
      margin-bottom: 8px;
      transition: var(--transition);
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      background: #25D366;
      color: #fff !important;
      font-weight: 700;
      font-size: .88rem;
      padding: 10px 20px;
      border-radius: 30px;
      transition: var(--transition);
    }

    #backToTop {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(46, 125, 50, .4);
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 999;
    }

    @media (max-width: 575.98px) {
      .section-pad {
        padding: 56px 0;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(250, 207, 51, .12);
      border: 1px solid rgba(250, 207, 51, .3);
      color: var(--gold);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    .fade-up-d5 {
      transition-delay: .5s;
    }

    @media (max-width: 575.98px) {
      .section-pad {
        padding: 48px 0;
      }

      .section-pad-sm {
        padding: 40px 0;
      }

      .inner-hero {
        padding: 48px 0 40px;
      }
    }


    /* ================================
   PAGE — À Propos (about)
   ================================ */
    .directeur-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      overflow: hidden;
    }

    .directeur-img-wrap {
      position: relative;
      max-width: 300px;
      margin: 0 auto;
    }

    .directeur-img-wrap img {
      border-radius: var(--radius);
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .directeur-img-wrap::before {
      content: '';
      position: absolute;
      inset: 12px -12px -12px 12px;
      background: var(--gold);
      border-radius: var(--radius);
      opacity: .25;
      z-index: 0;
    }

    .quote-mark {
      font-size: 4rem;
      line-height: .6;
      color: var(--gold);
      opacity: .35;
      font-family: Georgia, serif;
    }

    .directeur-quote {
      font-size: 1rem;
      color: rgba(255, 255, 255, .88);
      line-height: 1.65;
      font-style: normal;
      border-left: 3px solid var(--gold);
      padding-left: 18px;
      margin: 14px 0 20px;
    }

    .directeur-sig {
      color: var(--gold);
      font-weight: 700;
      font-size: .9rem;
    }

    .directeur-role {
      color: rgba(255, 255, 255, .55);
      font-size: .78rem;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .org-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      max-width: 860px;
      margin: 0 auto;
    }

    .org-card img {
      width: 100%;
      height: auto;
      max-height: 700px;
      object-fit: contain;
      background: var(--light);
      display: block;
    }

    .video-section-bg {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      position: relative;
      overflow: hidden;
    }

    .video-section-bg::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(250, 207, 51, .04);
      pointer-events: none;
    }

    .video-section-bg::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 5%;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: rgba(46, 125, 50, .05);
      pointer-events: none;
    }

    .video-thumb-btn {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
      cursor: pointer;
      display: block;
      width: 100%;
      background: transparent;
      border: none;
      padding: 0;
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .video-thumb-btn:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 28px 70px rgba(0, 0, 0, .55);
    }

    .video-thumb-btn img {
      width: 100%;
      display: block;
      transition: transform .5s ease;
    }

    .video-thumb-btn:hover img {
      transform: scale(1.03);
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(18, 39, 64, .15) 0%, rgba(18, 39, 64, .4) 55%, rgba(18, 39, 64, .65) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .3s ease;
    }

    .video-thumb-btn:hover .video-overlay {
      background: linear-gradient(to bottom, rgba(18, 39, 64, .05) 0%, rgba(18, 39, 64, .25) 55%, rgba(18, 39, 64, .5) 100%);
    }

    .play-btn-yt {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      position: relative;
      z-index: 2;
      animation: pulse-play 2.2s ease-in-out infinite;
      transition: transform .25s ease, background .25s ease;
    }

    .play-btn-yt i {
      margin-left: 5px;
    }

    .video-thumb-btn:hover .play-btn-yt {
      transform: scale(1.12);
      background: var(--white);
    }

    @keyframes pulse-play {
      0% {
        box-shadow: 0 0 0 0 rgba(250, 207, 51, .55);
      }

      60% {
        box-shadow: 0 0 0 22px rgba(250, 207, 51, .0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(250, 207, 51, .0);
      }
    }

    .video-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px 22px 20px;
      background: linear-gradient(to top, rgba(18, 39, 64, .88) 0%, transparent 100%);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 2;
    }

    .video-caption-icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: var(--gold);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .88rem;
      flex-shrink: 0;
    }

    .video-caption-text strong {
      display: block;
      color: #fff;
      font-size: .86rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .video-caption-text span {
      color: rgba(255, 255, 255, .58);
      font-size: .74rem;
    }

    #videoModal .modal-dialog {
      max-width: 900px;
    }

    #videoModal .modal-content {
      background: #000;
      border: none;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
    }

    #videoModal .modal-header {
      background: var(--navy-dark);
      border: none;
      padding: 13px 20px;
    }

    #videoModal .modal-title {
      color: var(--white);
      font-size: .9rem;
      font-family: 'Roboto Slab', serif;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    #videoModal .modal-title i {
      color: var(--gold);
    }

    #videoModal .btn-close {
      filter: invert(1) opacity(.7);
      transition: opacity .2s;
    }

    #videoModal .btn-close:hover {
      opacity: 1;
    }

    #videoModal .modal-body {
      padding: 0;
    }

    #videoModal iframe {
      border: 0;
    }

    @media (max-width: 575.98px) {
      .section-pad {
        padding: 48px 0;
      }

      .section-pad-sm {
        padding: 40px 0;
      }

      .inner-hero {
        padding: 48px 0 40px;
      }

      .play-btn-yt {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
      }
    }


    /* ================================
   PAGE — Activités (activities)
   ================================ */
    .activite-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .activite-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-5px);
    }

    .activite-card-img {
      height: 190px;
      overflow: hidden;
      position: relative;
    }

    .activite-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .activite-card:hover .activite-card-img img {
      transform: scale(1.06);
    }

    .activite-card-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--green);
      color: var(--white);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
    }

    .activite-card-body {
      padding: 26px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .activite-card-ico {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: rgba(46, 125, 50, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 1.2rem;
      margin-bottom: 14px;
    }

    .activite-card-body h4 {
      font-size: 1.05rem;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .activite-card-body p {
      font-size: .87rem;
      color: var(--gray-500);
      flex: 1;
      margin-bottom: 18px;
    }

    .activite-card-body .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-weight: 700;
      font-size: .87rem;
      transition: var(--transition);
    }

    .activite-card-body .card-link:hover {
      gap: 10px;
    }

    .activite-hero-card {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: var(--radius);
      padding: 40px;
      color: var(--white);
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .activite-hero-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      background: rgba(250, 207, 51, .08);
      border-radius: 50%;
    }

    .activite-hero-card .ico-big {
      width: 64px;
      height: 64px;
      background: rgba(250, 207, 51, .15);
      border: 2px solid rgba(250, 207, 51, .3);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .activite-hero-card h3 {
      color: var(--white);
      font-size: 1.25rem;
      margin-bottom: 12px;
    }

    .activite-hero-card p {
      color: rgba(255, 255, 255, .75);
      font-size: .9rem;
      margin-bottom: 24px;
    }

    .activite-hero-card ul {
      list-style: none;
      padding: 0;
      margin-bottom: 24px;
    }

    .activite-hero-card ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255, 255, 255, .8);
      font-size: .87rem;
      margin-bottom: 10px;
    }

    .activite-hero-card ul li i {
      color: var(--gold);
      font-size: .8rem;
      margin-top: 3px;
    }

    .activite-hero-card .btn-learn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--navy);
      padding: 11px 24px;
      border-radius: 22px;
      font-weight: 700;
      font-size: .87rem;
      transition: var(--transition);
    }

    .activite-hero-card .btn-learn:hover {
      background: #f0c000;
      transform: translateY(-2px);
      color: var(--navy);
    }

    .page-btn.dots {
      border-color: transparent;
      background: transparent;
      cursor: default;
      pointer-events: none;
      color: var(--gray-500);
    }


    /* ================================
   PAGE — Catalogues (catalogs)
   ================================ */
    .search-bar-wrap {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 24px 28px;
      margin-bottom: 40px;
    }

    .search-input-group {
      display: flex;
      gap: 0;
      border: 2px solid #e2e8f0;
      border-radius: 10px;
      overflow: hidden;
      transition: var(--transition);
    }

    .search-input-group:focus-within {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(46, 125, 50, .12);
    }

    .search-input-group input {
      flex: 1;
      border: none;
      padding: 13px 18px;
      font-size: .95rem;
      outline: none;
      color: var(--text);
    }

    .search-input-group button {
      background: var(--green);
      color: var(--white);
      border: none;
      padding: 13px 24px;
      font-weight: 700;
      font-size: .9rem;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-input-group button:hover {
      background: var(--green-lt);
    }

    .filter-pills {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .filter-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--light);
      color: var(--navy);
      border: 1.5px solid #e2e8f0;
      font-size: .82rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-pill:hover,
    .filter-pill.active {
      background: var(--green);
      color: var(--white);
      border-color: var(--green);
    }

    .cat-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .cat-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }

    .cat-card-img {
      height: 180px;
      overflow: hidden;
      position: relative;
    }

    .cat-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .cat-card:hover .cat-card-img img {
      transform: scale(1.06);
    }

    .cat-card-cat {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--navy);
      color: var(--white);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 16px;
    }

    .cat-card-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .cat-card-body h4 {
      font-size: .97rem;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .cat-card-body p {
      font-size: .85rem;
      color: var(--gray-500);
      flex: 1;
      margin-bottom: 16px;
    }

    .cat-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid #f0f0f0;
    }

    .cat-card-footer .cat-count {
      font-size: .8rem;
      color: var(--gray-500);
    }

    .cat-card-footer .cat-count strong {
      color: var(--navy);
    }

    .btn-cat {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(46, 125, 50, .08);
      color: var(--green);
      font-weight: 700;
      font-size: .84rem;
      padding: 8px 16px;
      border-radius: 20px;
      transition: var(--transition);
    }

    .btn-cat:hover {
      background: var(--green);
      color: var(--white);
    }

    #catModal .modal-content {
      border: none;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    }

    #catModal .modal-header {
      background: var(--navy);
      border: none;
      padding: 18px 24px;
    }

    #catModal .modal-title {
      color: var(--white);
      font-family: 'Roboto Slab', serif;
      font-size: 1rem;
    }

    #catModal .btn-close {
      filter: invert(1) opacity(.7);
    }

    #catModal .modal-body {
      padding: 28px;
    }

    #catModal .modal-img {
      width: 100%;
      max-height: 240px;
      object-fit: cover;
      border-radius: var(--radius);
      margin-bottom: 20px;
    }

    #catModal .modal-body p {
      font-size: .92rem;
      color: var(--gray-700);
      line-height: 1.8;
    }

    .page-btn.dots {
      border-color: transparent;
      background: transparent;
      cursor: default;
      pointer-events: none;
    }


    /* ================================
   PAGE — Contact (contact)
   ================================ */
    .contact-info-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px 24px;
      text-align: center;
      height: 100%;
      transition: var(--transition);
      border-bottom: 3px solid transparent;
    }

    .contact-info-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-bottom-color: var(--green);
    }

    .contact-info-card .ico-wrap {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(46, 125, 50, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.4rem;
      color: var(--green);
    }

    .contact-info-card h5 {
      font-size: .95rem;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .contact-info-card p,
    .contact-info-card a {
      font-size: .87rem;
      color: var(--gray-500);
      margin: 0;
    }

    .contact-info-card a:hover {
      color: var(--green);
    }

    .contact-form-wrap {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 40px;
    }

    .contact-form-wrap .form-label {
      font-size: .85rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .contact-form-wrap .form-control {
      border: 1.5px solid #e2e8f0;
      border-radius: 8px;
      padding: 11px 16px;
      font-size: .9rem;
      color: var(--text);
      transition: var(--transition);
    }

    .contact-form-wrap .form-control:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(46, 125, 50, .12);
    }

    .contact-form-wrap .btn-submit {
      background: var(--green);
      color: var(--white);
      border: none;
      border-radius: 28px;
      padding: 13px 36px;
      font-weight: 700;
      font-size: .95rem;
      transition: var(--transition);
      width: 100%;
    }

    .contact-form-wrap .btn-submit::before {
      content: "\f1d8";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      margin-right: 8px;
    }

    .contact-form-wrap .btn-submit:hover {
      background: var(--green-lt);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(46, 125, 50, .3);
    }

    .contact-side-box {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px;
    }

    .contact-side-box h4 {
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(250, 207, 51, .4);
    }

    .contact-link-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .contact-link-item .ico {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: rgba(46, 125, 50, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: .95rem;
      flex-shrink: 0;
    }

    .contact-link-item p {
      font-size: .86rem;
      color: var(--gray-700);
      margin: 0;
      line-height: 1.5;
    }

    .contact-link-item a {
      color: var(--green);
      font-weight: 600;
    }

    .contact-link-item a:hover {
      color: var(--green-lt);
    }

    .map-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .map-wrap iframe {
      width: 100%;
      height: 380px;
      border: none;
      display: block;
    }

    .hours-table {
      width: 100%;
      font-size: .86rem;
    }

    .hours-table tr td:first-child {
      font-weight: 600;
      color: var(--navy);
      padding: 6px 0;
    }

    .hours-table tr td:last-child {
      color: var(--gray-500);
      text-align: right;
    }

    .hours-table tr.highlight td {
      color: var(--green);
      font-weight: 700;
    }

    .pdf-box {
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--light);
      border-radius: 10px;
      padding: 16px 20px;
      margin-top: 20px;
    }

    .pdf-box .pdf-ico {
      width: 44px;
      height: 44px;
      background: #e74c3c;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .pdf-box h6 {
      font-size: .88rem;
      color: var(--navy);
      margin-bottom: 2px;
    }

    .pdf-box p {
      font-size: .8rem;
      color: var(--gray-500);
      margin: 0;
    }


    /* ================================
   PAGE — Dépistage COVID (depistage-covid)
   ================================ */
    .intro-row {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 36px;
      align-items: center;
    }

    @media (max-width: 991px) {
      .intro-row {
        grid-template-columns: 1fr;
      }
    }

    .intro-img {
      background: linear-gradient(135deg, #eef3fa, #fff);
      border-radius: var(--exam-radius);
      box-shadow: var(--exam-shadow);
      padding: 20px;
      display: grid;
      place-items: center;
    }

    .intro-img img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
    }

    .symptom-list {
      background: #fff;
      border-radius: var(--exam-radius);
      box-shadow: var(--exam-shadow);
      padding: 8px 0;
      list-style: none;
      margin: 0;
    }

    .symptom-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 26px;
      border-bottom: 1px solid #eef1f4;
      color: #3b4754;
      font-size: .98rem;
    }

    .symptom-list li:last-child {
      border-bottom: none;
    }

    .symptom-list .sym-icon {
      flex: 0 0 40px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(0, 0, 128, .08);
      color: var(--navy);
      display: grid;
      place-items: center;
      font-size: .95rem;
    }

    .senior-card {
      background: linear-gradient(135deg, rgba(250, 207, 51, .12), rgba(250, 207, 51, .04));
      border: 1px solid rgba(250, 207, 51, .3);
      border-radius: var(--exam-radius);
      padding: 26px 28px;
      height: 100%;
    }

    .senior-card .sc-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: rgba(250, 207, 51, .25);
      color: #8a6500;
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      margin-bottom: 16px;
    }

    .senior-card h4 {
      font-family: 'Roboto Slab', serif;
      color: var(--navy);
      font-size: 1.1rem;
      margin-bottom: 12px;
    }

    .senior-card p {
      color: #54616e;
      font-size: .92rem;
      line-height: 1.7;
      margin: 0;
    }

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

    @media (max-width: 991px) {
      .test-grid {
        grid-template-columns: 1fr;
      }
    }

    .test-card {
      background: #fff;
      border-radius: var(--exam-radius);
      overflow: hidden;
      box-shadow: var(--exam-shadow);
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .test-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--exam-shadow-hover);
    }

    .test-card .test-img {
      height: 200px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #eef3fa, #fff);
      overflow: hidden;
    }

    .test-card .test-img img {
      max-height: 220px;
      width: auto;
      object-fit: contain;
    }

    .test-card .test-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .test-card .test-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      margin-bottom: 16px;
    }

    .test-card.pcr .test-icon {
      background: rgba(0, 0, 128, .1);
      color: var(--navy);
    }

    .test-card.tag .test-icon {
      background: rgba(46, 125, 50, .12);
      color: var(--green);
    }

    .test-card.sero .test-icon {
      background: rgba(220, 38, 38, .1);
      color: #c0392b;
    }

    .test-card h4 {
      font-family: 'Roboto Slab', serif;
      color: var(--navy);
      font-size: 1.15rem;
      margin-bottom: 12px;
    }

    .test-card p {
      color: #54616e;
      font-size: .94rem;
      line-height: 1.65;
      margin: 0 0 14px;
    }

    .test-card .test-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(250, 207, 51, .18);
      color: #8a6500;
      padding: 4px 12px;
      border-radius: 999px;
      font-size: .78rem;
      font-weight: 700;
      margin-top: auto;
      width: fit-content;
    }

    .cond-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    @media (max-width: 991px) {
      .cond-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575px) {
      .cond-grid {
        grid-template-columns: 1fr;
      }
    }

    .cond-card {
      background: #fff;
      border-radius: 14px;
      padding: 22px 20px;
      text-align: center;
      box-shadow: 0 4px 14px rgba(7, 28, 31, .05);
      transition: var(--transition);
      border-top: 3px solid var(--green);
    }

    .cond-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--exam-shadow);
    }

    .cond-card .cc-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(46, 125, 50, .12);
      color: var(--green);
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      margin: 0 auto 14px;
    }

    .cond-card .cc-label {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: #6b7785;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .cond-card .cc-val {
      font-size: .92rem;
      color: var(--navy);
      font-weight: 700;
      line-height: 1.4;
    }

    .airport-block {
      background: #fff;
      border-radius: var(--exam-radius);
      box-shadow: var(--exam-shadow);
      overflow: hidden;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
    }

    @media (max-width: 991px) {
      .airport-block {
        grid-template-columns: 1fr;
      }
    }

    .airport-block .ab-img {
      background: linear-gradient(135deg, #eef3fa, #fff);
      display: grid;
      place-items: center;
      padding: 30px;
    }

    .airport-block .ab-img img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
    }

    .airport-block .ab-content {
      padding: 36px 38px;
    }

    .airport-block .ab-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 14px;
    }

    .airport-block h3 {
      font-family: 'Roboto Slab', serif;
      color: var(--navy);
      font-size: 1.4rem;
      margin-bottom: 14px;
    }

    .airport-block p {
      color: #54616e;
      font-size: .98rem;
      line-height: 1.75;
      margin: 0;
    }


    /* ================================
   PAGE — Dépistage MPOX (depistage-mpox)
   ================================ */
    .axis-card {
      background: #fff;
      border-radius: var(--exam-radius);
      padding: 28px 26px;
      height: 100%;
      box-shadow: var(--exam-shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      border-top: 4px solid var(--gold);
    }

    .axis-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--exam-shadow-hover);
    }

    .axis-card .axis-num {
      font-family: 'Roboto Slab', serif;
      font-size: 2.6rem;
      font-weight: 700;
      color: rgba(0, 0, 128, .08);
      line-height: 1;
      position: absolute;
      top: 12px;
      right: 18px;
    }

    .axis-card .axis-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--navy), #2a3b9e);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      margin-bottom: 18px;
    }

    .axis-card h5 {
      color: var(--navy);
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.45;
    }

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

    @media (max-width: 991px) {
      .phase-grid {
        grid-template-columns: 1fr;
      }
    }

    .phase-card {
      background: #fff;
      border-radius: var(--exam-radius);
      overflow: hidden;
      box-shadow: var(--exam-shadow);
      transition: var(--transition);
      position: relative;
    }

    .phase-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--exam-shadow-hover);
    }

    .phase-card .phase-img {
      background: linear-gradient(135deg, #eef3fa, #fff);
      padding: 24px;
      display: grid;
      place-items: center;
      aspect-ratio: 4/3;
    }

    .phase-card .phase-img img {
      max-height: 220px;
      width: auto;
      object-fit: contain;
    }

    .phase-card .phase-step {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--navy);
      color: #fff;
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 1.05rem;
      box-shadow: 0 8px 16px rgba(0, 0, 128, .25);
    }

    .phase-card .phase-body {
      padding: 24px 26px 28px;
    }

    .phase-card .phase-name {
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 8px;
    }

    .phase-card h4 {
      color: var(--navy);
      font-family: 'Roboto Slab', serif;
      font-size: 1.15rem;
      margin: 0 0 10px;
    }

    .phase-card .phase-duration {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(250, 207, 51, .18);
      color: #8a6500;
      padding: 4px 12px;
      border-radius: 999px;
      font-size: .78rem;
      font-weight: 700;
      margin-bottom: 14px;
    }

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

    @media (max-width: 991px) {
      .transmission-grid {
        grid-template-columns: 1fr;
      }
    }

    .trans-card-v2 {
      background: #fff;
      border-radius: var(--exam-radius);
      overflow: hidden;
      box-shadow: var(--exam-shadow);
      transition: var(--transition);
      height: 100%;
    }

    .trans-card-v2:hover {
      transform: translateY(-6px);
      box-shadow: var(--exam-shadow-hover);
    }

    .trans-card-v2 .trans-img {
      height: 200px;
      overflow: hidden;
      place-items: center;
    }

    .trans-card-v2 .trans-img img {
      max-height: 220px;
      width: auto;
      object-fit: contain;
    }

    .trans-card-v2:hover .trans-img img {
      transform: scale(1.05);
    }

    .trans-card-v2 .trans-body {
      padding: 24px;
    }

    .trans-card-v2 .trans-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      margin-bottom: 16px;
    }

    .trans-card-v2.human .trans-icon {
      background: rgba(0, 0, 128, .1);
      color: var(--navy);
    }

    .trans-card-v2.animal .trans-icon {
      background: rgba(46, 125, 50, .12);
      color: var(--green);
    }

    .trans-card-v2.sexual .trans-icon {
      background: rgba(220, 38, 38, .1);
      color: #c0392b;
    }

    .trans-card-v2 h4 {
      font-family: 'Roboto Slab', serif;
      color: var(--navy);
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .trans-card-v2 p {
      color: #54616e;
      font-size: .94rem;
      line-height: 1.65;
      margin: 0;
    }

    .prev-item {
      background: #fff;
      border-radius: 14px;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 18px;
      box-shadow: 0 4px 14px rgba(7, 28, 31, .05);
      transition: var(--transition);
      border-left: 3px solid var(--green);
      margin-bottom: 16px;
    }

    .prev-item:hover {
      transform: translateX(6px);
      box-shadow: var(--exam-shadow);
    }

    .prev-item .pi-icon {
      flex: 0 0 42px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(46, 125, 50, .12);
      color: var(--green);
      display: grid;
      place-items: center;
      font-size: 1rem;
    }

    .prev-item p {
      margin: 0;
      color: #3b4754;
      font-size: .96rem;
    }


    /* ================================
   PAGE — Message du Directeur (director-message)
   ================================ */
    .dir-photo-wrap {
      position: relative;
      max-width: 300px;
      margin: 0 auto;
    }

    .dir-photo-wrap img {
      border-radius: var(--radius);
      width: 100%;
      box-shadow: var(--shadow);
      position: relative;
      z-index: 1;
    }

    .dir-photo-wrap::before {
      content: '';
      position: absolute;
      inset: 16px -16px -16px 16px;
      background: var(--gold);
      border-radius: var(--radius);
      opacity: .2;
      z-index: 0;
    }

    .dir-card-info {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 20px 24px;
      margin-top: 24px;
      border-top: 3px solid var(--green);
    }

    .dir-card-info h6 {
      font-family: 'Roboto Slab', serif;
      color: var(--navy);
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .dir-card-info span {
      font-size: .82rem;
      color: var(--gray-500);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .dir-card-info p {
      font-size: .84rem;
      color: var(--gray-500);
      margin: 0;
    }

    .message-body {
      font-size: 1rem;
      color: #333;
      line-height: 1.85;
    }

    .message-body p {
      margin-bottom: 1.2rem;
    }

    .message-intro {
      font-size: 1.1rem;
      font-style: italic;
      color: var(--navy);
      border-left: 4px solid var(--gold);
      padding-left: 20px;
      margin-bottom: 32px;
      line-height: 1.75;
    }

    .message-signature {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid #e9ecef;
    }

    .message-signature .sig-name {
      font-family: 'Roboto Slab', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
    }

    .message-signature .sig-role {
      font-size: .85rem;
      color: var(--gray-500);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .quote-mark {
      font-size: 5rem;
      line-height: .5;
      color: var(--gold);
      opacity: .35;
      font-family: Georgia, serif;
      display: block;
      margin-bottom: 8px;
    }

    .btn-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--navy);
      font-weight: 700;
      font-size: .88rem;
      border: 2px solid #e9ecef;
      border-radius: 24px;
      padding: 9px 20px;
      transition: var(--transition);
    }

    .btn-back:hover {
      border-color: var(--green);
      color: var(--green);
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      background: #25D366;
      color: #fff !important;
      font-weight: 700;
      font-size: .88rem;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      transition: var(--transition);
    }

    @media (max-width: 575.98px) {
      .section-pad {
        padding: 56px 0;
      }

      .dir-photo-wrap {
        max-width: 220px;
      }
    }


    /* ================================
   PAGE — Examens (exams)
   ================================ */
    .inner-hero p {
      color: rgba(255, 255, 255, .72);
      font-size: .95rem;
      max-width: 640px
    }

    .search-hero {
      background: linear-gradient(115deg, var(--navy-dark) 0%, var(--navy) 60%, rgba(46, 125, 50, .6) 100%);
      padding: 0 0 40px;
      position: relative
    }

    .search-hero-box {
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, .25);
      padding: 28px 32px;
      margin-top: -20px;
      position: relative;
      z-index: 10
    }

    .search-hero-box .big-search {
      display: flex;
      gap: 0;
      border: 2.5px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      transition: var(--transition)
    }

    .search-hero-box .big-search:focus-within {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(46, 125, 50, .12)
    }

    .search-hero-box .big-search input {
      flex: 1;
      border: none;
      padding: 15px 20px;
      font-size: 1rem;
      outline: none;
      color: var(--text)
    }

    .search-hero-box .big-search button {
      background: var(--green);
      color: var(--white);
      border: none;
      padding: 15px 28px;
      font-weight: 700;
      font-size: .95rem;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap
    }

    .search-hero-box .big-search button:hover {
      background: var(--green-lt)
    }

    .search-counter {
      font-size: .85rem;
      color: var(--gray-500);
      margin-top: 10px
    }

    .search-counter strong {
      color: var(--navy)
    }

    .filter-area {
      padding: 20px 0;
      background: var(--light);
      border-bottom: 1px solid #e9ecef;
      position: sticky;
      top: 76px;
      z-index: 100
    }

    .filter-pills {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center
    }

    .filter-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--white);
      color: var(--navy);
      border: 1.5px solid #e2e8f0;
      font-size: .82rem;
      font-weight: 600;
      padding: 7px 14px;
      border-radius: 20px;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap
    }

    .filter-pill:hover,
    .filter-pill.active {
      background: var(--green);
      color: var(--white);
      border-color: var(--green)
    }

    .filter-pill .count-badge {
      background: rgba(0, 0, 0, .1);
      color: inherit;
      font-size: .72rem;
      padding: 1px 6px;
      border-radius: 8px;
      font-weight: 700
    }

    .filter-pill.active .count-badge {
      background: rgba(255, 255, 255, .25)
    }

    .exam-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-left: 4px solid transparent;
      cursor: pointer;
      overflow: hidden
    }

    .exam-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-3px);
      border-left-color: var(--green)
    }

    .exam-card-body {
      padding: 22px 24px
    }

    .exam-cat-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .05em;
      padding: 3px 10px;
      border-radius: 10px;
      margin-bottom: 10px
    }

    .exam-card h5 {
      font-size: .97rem;
      color: var(--navy);
      margin-bottom: 6px;
      line-height: 1.4
    }

    .exam-card p {
      font-size: .85rem;
      color: var(--gray-500);
      margin: 0 0 14px;
      line-height: 1.6
    }

    .exam-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: .8rem;
      color: var(--gray-500)
    }

    .exam-meta span {
      display: flex;
      align-items: center;
      gap: 5px
    }

    .exam-meta i {
      color: var(--green);
      font-size: .78rem
    }

    .exam-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-weight: 700;
      font-size: .84rem;
      transition: var(--transition);
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid #f0f0f0;
      width: 100%
    }

    .exam-more:hover {
      gap: 10px;
      color: var(--green-lt)
    }

    .no-results {
      text-align: center;
      padding: 60px 20px;
      color: var(--gray-500)
    }

    .no-results i {
      font-size: 3rem;
      color: #dee2e6;
      margin-bottom: 16px;
      display: block
    }

    #examModal .modal-content {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0, 0, 0, .2)
    }

    #examModal .modal-header {
      background: linear-gradient(105deg, var(--navy-dark), var(--navy));
      border: none;
      padding: 22px 28px
    }

    #examModal .modal-title {
      color: var(--white);
      font-family: 'Roboto Slab', serif;
      font-size: 1.05rem
    }

    #examModal .btn-close {
      filter: invert(1) opacity(.7)
    }

    #examModal .modal-body {
      padding: 32px
    }

    .modal-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 20px
    }

    .modal-detail-item {
      background: var(--light);
      border-radius: 10px;
      padding: 16px
    }

    .modal-detail-item .item-label {
      font-size: .74rem;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: var(--gray-500);
      margin-bottom: 4px
    }

    .modal-detail-item .item-val {
      font-size: .93rem;
      color: var(--navy);
      font-weight: 600
    }

    .modal-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(46, 125, 50, .08);
      color: var(--green);
      font-size: .78rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 10px;
      margin: 3px
    }

    .pagination-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin-top: 40px;
      flex-wrap: wrap
    }

    .page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      border-radius: 8px;
      border: 2px solid #e2e8f0;
      background: var(--white);
      color: var(--navy);
      font-weight: 700;
      font-size: .88rem;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      padding: 0 8px
    }

    .page-btn:hover,
    .page-btn.active {
      background: var(--green);
      border-color: var(--green);
      color: var(--white)
    }

    .page-btn.dots {
      border-color: transparent;
      background: transparent;
      cursor: default;
      pointer-events: none
    }

    .page-btn.prev-next {
      gap: 6px;
      padding: 0 16px;
      font-size: .83rem
    }

    @media(max-width:575.98px) {
      .modal-detail-grid {
        grid-template-columns: 1fr
      }
    }


    /* ================================
   PAGE — FAQ (faq)
   ================================ */
    .faq-accordion .accordion-item {
      border: none;
      border-radius: var(--radius) !important;
      margin-bottom: 12px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .faq-accordion .accordion-button {
      font-family: 'Roboto', sans-serif;
      font-weight: 600;
      font-size: .95rem;
      color: var(--navy);
      background: var(--white);
      padding: 20px 24px;
      border: none;
      gap: 14px;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      color: var(--green);
      background: rgba(46, 125, 50, .04);
      box-shadow: none;
    }

    .faq-accordion .accordion-button::after {
      background-image: none;
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: .9rem;
      color: var(--green);
      transition: transform .28s ease;
      width: auto;
      height: auto;
    }

    .faq-accordion .accordion-button:not(.collapsed)::after {
      transform: rotate(-180deg);
    }

    .faq-accordion .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
    }

    .faq-accordion .accordion-body {
      font-size: .9rem;
      color: var(--gray-700);
      line-height: 1.75;
      padding: 4px 24px 22px;
      background: var(--white);
      border-top: 1px solid rgba(46, 125, 50, .1);
    }

    .faq-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 28px;
      height: 28px;
      background: var(--green);
      color: #fff;
      border-radius: 50%;
      font-size: .75rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .faq-accordion .accordion-button:not(.collapsed) .faq-number {
      background: var(--gold);
      color: var(--navy);
    }

    .faq-sidebar {
      position: sticky;
      top: 80px;
    }

    .faq-side-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
      margin-bottom: 24px;
    }

    .faq-side-card h5 {
      font-size: .95rem;
      color: var(--navy);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(250, 207, 51, .4);
    }

    .faq-side-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .05);
      font-size: .87rem;
      color: var(--navy);
      font-weight: 500;
      transition: var(--transition);
      cursor: pointer;
    }

    .faq-side-link:last-child {
      border-bottom: none;
    }

    .faq-side-link i {
      color: var(--green);
      font-size: .8rem;
    }

    .faq-side-link:hover {
      color: var(--green);
      padding-left: 4px;
    }

    .faq-cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: var(--radius);
      padding: 28px;
      color: var(--white);
      text-align: center;
    }

    .faq-cta h5 {
      color: var(--gold);
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .faq-cta p {
      color: rgba(255, 255, 255, .75);
      font-size: .87rem;
      margin-bottom: 18px;
    }

    .faq-cta a {
      background: var(--green);
      color: #fff;
      padding: 10px 22px;
      border-radius: 20px;
      font-weight: 700;
      font-size: .87rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .faq-cta a:hover {
      background: var(--green-lt);
      transform: translateY(-2px);
      color: #fff;
    }

    .faq-search-wrap {
      position: relative;
      max-width: 520px;
      margin: 0 auto 48px;
    }

    .faq-search-wrap input {
      width: 100%;
      padding: 14px 56px 14px 20px;
      border: 2px solid #e2e8f0;
      border-radius: 30px;
      font-size: .95rem;
      outline: none;
      transition: var(--transition);
      color: var(--text);
    }

    .faq-search-wrap input:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(46, 125, 50, .12);
    }

    .faq-search-wrap button {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: var(--green);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: .9rem;
      cursor: pointer;
      transition: var(--transition);
    }

    .faq-search-wrap button:hover {
      background: var(--green-lt);
    }


    /* ================================
   PAGE — Laboratoires (laboratories)
   ================================ */
    .inner-hero p {
      color: rgba(255, 255, 255, .72);
      font-size: .95rem;
      max-width: 620px
    }

    .stats-bar {
      background: var(--navy);
      padding: 24px 0
    }

    .stat-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 24px;
      background: rgba(255, 255, 255, .06);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, .1)
    }

    .stat-pill .stat-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: rgba(250, 207, 51, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.1rem;
      flex-shrink: 0
    }

    .stat-pill .stat-val {
      font-family: 'Roboto Slab', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1
    }

    .stat-pill .stat-lbl {
      font-size: .72rem;
      color: rgba(255, 255, 255, .6);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-top: 2px
    }

    .map-section {
      background: var(--light)
    }

    .map-wrap {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px;
      height: 100%
    }

    .gabon-map {
      width: 100%;
      max-height: 520px
    }

    .province-path {
      fill: #C8D9E6;
      stroke: var(--white);
      stroke-width: 2;
      cursor: pointer;
      transition: fill .25s ease, filter .25s ease
    }

    .province-path:hover,
    .province-path.active {
      fill: var(--green);
      filter: drop-shadow(0 4px 10px rgba(46, 125, 50, .35))
    }

    .province-path.has-lab {
      fill: #9EC5D4
    }

    .province-path.has-lab:hover,
    .province-path.has-lab.active {
      fill: var(--green)
    }

    .province-label {
      font-family: 'Roboto', sans-serif;
      font-size: 10px;
      font-weight: 700;
      fill: var(--navy-dark);
      pointer-events: none;
      text-anchor: middle
    }

    .lab-panel {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
      height: 100%;
      max-height: 560px;
      overflow-y: auto
    }

    .lab-panel::-webkit-scrollbar {
      width: 4px
    }

    .lab-panel::-webkit-scrollbar-track {
      background: #f0f0f0;
      border-radius: 4px
    }

    .lab-panel::-webkit-scrollbar-thumb {
      background: var(--green);
      border-radius: 4px
    }

    .lab-panel-title {
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(250, 207, 51, .4)
    }

    .lab-card {
      background: var(--light);
      border-radius: 10px;
      padding: 18px;
      margin-bottom: 14px;
      border-left: 4px solid var(--green);
      transition: var(--transition);
      cursor: pointer
    }

    .lab-card:hover {
      background: rgba(46, 125, 50, .06);
      transform: translateX(4px)
    }

    .lab-card.featured {
      border-left-color: var(--gold)
    }

    .lab-card h5 {
      font-size: .93rem;
      color: var(--navy);
      margin-bottom: 6px
    }

    .lab-card .lab-meta {
      font-size: .82rem;
      color: var(--gray-500);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 4px
    }

    .lab-card .lab-meta i {
      color: var(--green);
      font-size: .78rem
    }

    .lab-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(46, 125, 50, .1);
      color: var(--green);
      font-size: .72rem;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 10px;
      margin-top: 8px
    }

    .lab-badge.gold {
      background: rgba(250, 207, 51, .15);
      color: #b8860b
    }

    .province-empty {
      text-align: center;
      padding: 40px 20px;
      color: var(--gray-500)
    }

    .province-empty i {
      font-size: 2.5rem;
      color: #dee2e6;
      margin-bottom: 12px;
      display: block
    }

    .mission-block {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: var(--radius);
      padding: 40px;
      position: relative;
      overflow: hidden
    }

    .mission-block::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      background: rgba(250, 207, 51, .07);
      border-radius: 50%
    }

    .mission-block h3 {
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 14px
    }

    .mission-block p {
      color: rgba(255, 255, 255, .75);
      font-size: .9rem;
      line-height: 1.75
    }

    .mission-list {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .mission-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255, 255, 255, .8);
      font-size: .88rem;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .07)
    }

    .mission-list li:last-child {
      border-bottom: none
    }

    .mission-list li i {
      color: var(--gold);
      font-size: .82rem;
      margin-top: 3px;
      flex-shrink: 0
    }

    .prov-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px
    }

    .prov-tab {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--white);
      color: var(--navy);
      border: 1.5px solid #e2e8f0;
      font-size: .82rem;
      font-weight: 600;
      padding: 7px 14px;
      border-radius: 20px;
      cursor: pointer;
      transition: var(--transition)
    }

    .prov-tab:hover,
    .prov-tab.active {
      background: var(--green);
      color: var(--white);
      border-color: var(--green)
    }

    .prov-tab .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      transition: background .2s
    }

    .prov-tab:hover .dot,
    .prov-tab.active .dot {
      background: var(--white)
    }

    .prov-tab.no-lab .dot {
      background: #ccc
    }


    /* ================================
   PAGE — Actualités (news)
   ================================ */
    #mainNav .nav-link {
      font-size: .88rem;
      font-weight: 600;
      color: var(--navy) !important;
      padding: 22px 14px !important;
      text-transform: uppercase;
      transition: var(--transition);
      position: relative;
    }

    .actu-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      background: var(--white);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .actu-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .actu-date {
      font-size: .8rem;
      color: var(--gray-500);
      margin-bottom: 8px;
    }

    .actu-body h5 {
      font-size: .97rem;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.4;
      flex: 1;
    }

    .actu-body p {
      font-size: .86rem;
      color: var(--gray-500);
      margin: 0 0 14px;
    }

    .actu-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-weight: 700;
      font-size: .84rem;
      transition: var(--transition);
      align-self: flex-start;
    }

    .actu-link:hover {
      gap: 10px;
      color: var(--green);
    }

    .sidebar-widget {
      background: var(--white);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      margin-bottom: 24px;
    }

    .sidebar-widget h5 {
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(250, 207, 51, .4);
    }

    .sidebar-cat a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 0;
      border-bottom: 1px solid #f0f0f0;
      color: var(--navy);
      font-size: .88rem;
      font-weight: 600;
      transition: var(--transition);
    }

    .sidebar-cat a:hover {
      color: var(--green);
      padding-left: 6px;
    }

    .sidebar-cat a.active {
      color: var(--green);
    }

    .sidebar-cat a span {
      background: var(--light);
      color: var(--gray-500);
      font-size: .72rem;
      padding: 2px 8px;
      border-radius: 10px;
      font-weight: 700;
    }

    .popular-item {
      display: flex;
      gap: 12px;
      margin-bottom: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid #f0f0f0;
    }

    .popular-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .popular-thumb {
      width: 70px;
      height: 60px;
      flex-shrink: 0;
      border-radius: 8px;
      overflow: hidden;
    }

    .popular-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .popular-text h6 {
      font-size: .85rem;
      color: var(--navy);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .popular-text span {
      font-size: .76rem;
      color: var(--gray-500);
    }

    .search-form .form-control {
      border: 2px solid #e9ecef;
      border-radius: 8px 0 0 8px;
      padding: 10px 14px;
    }

    .search-form .form-control:focus {
      border-color: var(--green);
      box-shadow: none;
    }

    .search-form .btn {
      border-radius: 0 8px 8px 0;
      background: var(--green);
      color: #fff;
      border: none;
      padding: 10px 18px;
    }

    .search-form .btn:hover {
      background: var(--green-lt);
    }

    #newsletter h3 {
      color: var(--white);
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      margin-bottom: 10px;
    }

    #newsletter p {
      color: rgba(255, 255, 255, .8);
      font-size: .93rem;
    }

    .newsletter-form .input-group {
      background: rgba(255, 255, 255, .12);
      border-radius: 30px;
      padding: 5px;
      border: 1px solid rgba(255, 255, 255, .25);
      display: flex;
      align-items: center;
    }

    .newsletter-form input[type="email"] {
      background: transparent;
      border: none;
      flex: 1;
      color: var(--white);
      padding: 10px 18px;
      outline: none !important;
      font-size: .92rem;
      min-width: 0;
    }

    .newsletter-form input[type="email"]::placeholder {
      color: rgba(255, 255, 255, .55);
    }

    .newsletter-form .btn-sub {
      background: var(--white);
      color: var(--green);
      font-weight: 700;
      border-radius: 24px;
      padding: 10px 22px;
      border: none;
      transition: var(--transition);
      white-space: nowrap;
      font-size: .88rem;
      flex-shrink: 0;
    }

    .pagination-wrap {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 40px;
    }

    .pagination-wrap .page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      border: 2px solid #e9ecef;
      background: var(--white);
      color: var(--navy);
      font-weight: 700;
      font-size: .88rem;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
    }

    .pagination-wrap .page-btn:hover,
    .pagination-wrap .page-btn.active {
      background: var(--green);
      border-color: var(--green);
      color: var(--white);
    }

    .pagination-wrap .page-btn.dots {
      border-color: transparent;
      background: transparent;
      cursor: default;
    }

    .pagination-wrap .page-btn.prev-next {
      width: auto;
      padding: 0 14px;
      gap: 6px;
      font-size: .82rem;
    }

    /* Sortie native de paginate_links() (type=list) → même rendu que
       les .page-btn ci-dessus, pour l'archive des actualités. */
    .pagination-wrap ul.page-numbers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pagination-wrap .page-numbers {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border-radius: 8px;
      border: 2px solid #e9ecef;
      background: var(--white);
      color: var(--navy);
      font-weight: 700;
      font-size: .88rem;
      text-decoration: none;
      transition: var(--transition);
    }

    .pagination-wrap a.page-numbers:hover,
    .pagination-wrap .page-numbers.current {
      background: var(--green);
      border-color: var(--green);
      color: var(--white);
    }

    .pagination-wrap .page-numbers.dots {
      border-color: transparent;
      background: transparent;
    }


    /* ================================
   PAGE — Notre Mission (our-mission)
   ================================ */
    .about-img-wrap {
      position: relative;
      max-width: 100% !important;
      margin: 0 auto;
    }


    /* ================================
   PAGE — Publications (publications)
   ================================ */
    .search-bar-wrap {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 24px 28px;
      margin-bottom: 48px;
    }

    .search-bar-wrap .form-control {
      border: 2px solid #e9ecef;
      border-radius: 8px 0 0 8px;
      padding: 12px 18px;
      font-size: .95rem;
    }

    .search-bar-wrap .form-control:focus {
      border-color: var(--green);
      box-shadow: none;
    }

    .search-bar-wrap .btn {
      border-radius: 0 8px 8px 0;
      background: var(--green);
      color: #fff;
      border: none;
      padding: 12px 28px;
      font-weight: 700;
      transition: var(--transition);
    }

    .search-bar-wrap .btn:hover {
      background: var(--green-lt);
    }

    .pub-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .pub-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-5px);
    }

    .pub-card .pub-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .pub-card .pub-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .pub-card:hover .pub-img img {
      transform: scale(1.05);
    }

    .pub-card .pub-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--navy);
      color: var(--white);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
    }

    .pub-card .pub-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .pub-card .pub-date {
      font-size: .8rem;
      color: var(--gray-500);
      margin-bottom: 10px;
    }

    .pub-card h4 {
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.4;
      flex: 1;
    }

    .pub-card p {
      font-size: .86rem;
      color: var(--gray-500);
      margin-bottom: 18px;
    }

    .pub-card .pub-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: var(--white);
      font-size: .84rem;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: 24px;
      transition: var(--transition);
      align-self: flex-start;
    }

    .pub-card .pub-link:hover {
      background: var(--green-lt);
      transform: translateX(3px);
    }

    #newsletter {
      background: var(--green);
      padding: 56px 0;
    }

    .newsletter-form input {
      background: transparent;
      border: none;
      width: 72%;
      color: var(--white);
      padding: 10px 18px;
      font-size: .92rem;
      outline: none !important;
    }


    /* ================================
   PAGE — Politique Qualité (quality-policy)
   ================================ */
    .cta-download-block {
      background: linear-gradient(105deg, rgba(46, 125, 50, .08) 0%, rgba(26, 58, 92, .06) 100%);
      border: 1px solid rgba(46, 125, 50, .2);
      border-radius: var(--radius);
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-download-block .cta-icon {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      border-radius: 14px;
      background: var(--green);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }

    .cta-download-block h6 {
      font-size: .9rem;
      color: var(--navy);
      margin-bottom: 2px;
      font-weight: 700;
    }

    .cta-download-block p {
      font-size: .8rem;
      color: var(--gray-500);
      margin: 0;
    }


    /* ================================
   PAGE — Services (services)
   ================================ */
    .service-admin-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
      border-top: 4px solid transparent;
    }

    .service-admin-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-5px);
      border-top-color: var(--green);
    }

    .service-admin-img {
      height: 180px;
      overflow: hidden;
    }

    .service-admin-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .service-admin-card:hover .service-admin-img img {
      transform: scale(1.06);
    }

    .service-admin-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .service-admin-body h4 {
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .service-admin-body p {
      font-size: .86rem;
      color: var(--gray-500);
      flex: 1;
      margin-bottom: 18px;
    }

    .service-admin-body .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-weight: 700;
      font-size: .87rem;
      transition: var(--transition);
    }

    .service-admin-body .card-link:hover {
      gap: 10px;
    }

    .service-tech-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: center;
      height: 100%;
      border-bottom: 3px solid transparent;
    }

    .service-tech-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
      border-bottom-color: var(--green);
    }

    .service-tech-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: rgba(46, 125, 50, .09);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 1.5rem;
      margin: 0 auto 18px;
      transition: var(--transition);
    }

    .service-tech-card:hover .service-tech-icon {
      background: var(--green);
      color: var(--white);
    }

    .service-tech-card h5 {
      font-size: .93rem;
      color: var(--navy);
      margin-bottom: 8px;
      font-weight: 700;
    }

    .service-tech-card p {
      font-size: .84rem;
      color: var(--gray-500);
      margin: 0 0 16px;
    }

    .service-tech-card a {
      color: var(--green);
      font-weight: 700;
      font-size: .84rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }

    .service-tech-card a:hover {
      gap: 10px;
    }

    .services-intro {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: var(--radius);
      padding: 44px 48px;
      position: relative;
      overflow: hidden;
      color: var(--white);
    }

    .services-intro::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      background: rgba(250, 207, 51, .07);
      border-radius: 50%;
    }

    .services-intro h3 {
      color: var(--white);
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .services-intro p {
      color: rgba(255, 255, 255, .78);
      font-size: .9rem;
      margin-bottom: 0;
    }

    .services-intro ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .services-intro ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255, 255, 255, .8);
      font-size: .88rem;
      margin-bottom: 10px;
    }

    .services-intro ul li i {
      color: var(--gold);
      font-size: .85rem;
      margin-top: 2px;
      flex-shrink: 0;
    }


    /* ================================
   PAGE — Mentions Légales (terms-and-conditions)
   ================================ */
    .cgu-wrap {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .cgu-sidebar {
      background: var(--light);
      border-right: 1px solid #e9ecef;
      padding: 32px 24px;
    }

    .cgu-sidebar-title {
      font-size: .78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--gray-500);
      margin-bottom: 16px;
    }

    .cgu-nav a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 8px;
      font-size: .88rem;
      color: var(--navy);
      font-weight: 500;
      margin-bottom: 4px;
      transition: var(--transition);
    }

    .cgu-nav a:hover,
    .cgu-nav a.active {
      background: var(--white);
      color: var(--green);
      box-shadow: var(--shadow);
    }

    .cgu-nav a i {
      color: var(--green);
      font-size: .8rem;
      width: 14px;
    }

    .cgu-body {
      padding: 48px;
    }

    .cgu-section {
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid #f0f0f0;
    }

    .cgu-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .cgu-section-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: var(--green);
      color: var(--white);
      border-radius: 50%;
      font-size: .82rem;
      font-weight: 700;
      flex-shrink: 0;
      margin-right: 12px;
    }

    .cgu-section h2 {
      font-size: 1.2rem;
      color: var(--navy);
      display: flex;
      align-items: center;
      margin-bottom: 16px;
    }

    .cgu-section h3 {
      font-size: 1rem;
      color: var(--navy);
      margin: 20px 0 10px;
    }

    .cgu-section p {
      font-size: .92rem;
      color: var(--gray-700);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .cgu-section ul {
      padding-left: 20px;
      margin-bottom: 14px;
    }

    .cgu-section ul li {
      font-size: .92rem;
      color: var(--gray-700);
      line-height: 1.8;
      margin-bottom: 6px;
    }

    .cgu-highlight {
      background: rgba(46, 125, 50, .06);
      border-left: 4px solid var(--green);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 18px 20px;
      margin: 16px 0;
    }

    .cgu-highlight p {
      margin: 0;
      font-size: .9rem;
      color: var(--navy);
    }

    .cgu-date-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(250, 207, 51, .15);
      border: 1px solid rgba(250, 207, 51, .4);
      color: var(--navy);
      font-size: .8rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 32px;
    }

    .cgu-date-badge i {
      color: var(--gold);
    }

    @media (max-width: 991.98px) {
      .cgu-sidebar {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
      }

      .cgu-body {
        padding: 32px 24px;
      }
    }


    /* ================================
   GLOBAL — Compléments pages détail
   ================================ */

    .detail-content {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 40px;
    }

    .detail-content .content-img {
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 28px;
    }

    .detail-content .content-img img {
      width: 100%;
      max-height: 420px;
      object-fit: cover;
    }

    .detail-content p {
      font-size: .95rem;
      color: var(--gray-700);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .detail-sidebar {
      position: sticky;
      top: 80px;
    }

    .sidebar-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
      margin-bottom: 24px;
    }

    .sidebar-card h5 {
      font-size: .95rem;
      color: var(--navy);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(250, 207, 51, .4);
    }


    /* ================================
   PAGE — Détail Examen
   ================================ */

    body {
      background: #fcfdfe
    }

    .inner-hero h1 {
      color: var(--white);
      font-size: clamp(1.5rem, 3.2vw, 2.2rem);
      margin: 0
    }

    .exam-detail-section {
      padding: 56px 0 80px
    }

    .exam-detail-img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 8px 28px rgba(7, 28, 31, .1);
      margin-bottom: 32px;
      max-height: 380px;
      object-fit: cover
    }

    .exam-detail-text {
      font-size: 1.05rem;
      line-height: 1.85;
      color: #3b4754
    }

    .exam-detail-text p {
      margin-bottom: 20px
    }

    .exam-cta {
      background: linear-gradient(115deg, var(--navy-dark), var(--navy) 60%, #16307a);
      color: #fff;
      border-radius: 18px;
      padding: 36px 38px;
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap
    }

    .exam-cta .cta-text h4 {
      font-family: 'Roboto Slab', serif;
      font-size: 1.2rem;
      margin: 0 0 6px;
      color: #fff
    }

    .exam-cta .cta-text p {
      margin: 0;
      color: rgba(255, 255, 255, .78);
      font-size: .92rem
    }

    .exam-cta .btn-cta {
      background: var(--gold);
      color: var(--navy-dark);
      font-weight: 700;
      border: none;
      padding: 12px 26px;
      border-radius: 999px;
      font-size: .92rem;
      white-space: nowrap;
      transition: var(--transition);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .exam-cta .btn-cta:hover {
      background: #fff;
      color: var(--navy-dark)
    }

    .side-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 28px rgba(7, 28, 31, .08);
      padding: 24px;
      position: sticky;
      top: 100px
    }

    .side-card h6 {
      font-family: 'Roboto Slab', serif;
      color: var(--navy);
      font-size: .95rem;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .side-card h6 i {
      color: var(--green)
    }

    .cat-list {
      list-style: none;
      margin: 0;
      padding: 0
    }

    .cat-list li {
      margin-bottom: 6px
    }

    .cat-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 10px;
      text-decoration: none;
      color: var(--navy);
      font-size: .87rem;
      font-weight: 600;
      transition: var(--transition)
    }

    .cat-list a:hover {
      background: #f5f8fb
    }

    .cat-list a.active {
      background: rgba(46, 125, 50, .1);
      color: var(--green)
    }

    .cat-list .cat-name {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .cat-list .cat-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: .8rem;
      flex-shrink: 0
    }

    .cat-list .cat-count {
      background: rgba(0, 0, 0, .06);
      color: var(--gray-500);
      font-size: .74rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 8px
    }

    .side-card .all-link {
      display: block;
      text-align: center;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid #eef1f4;
      color: var(--green);
      font-size: .85rem;
      font-weight: 700;
      text-decoration: none
    }

    .side-card .all-link:hover {
      text-decoration: underline
    }

    @media(max-width:991px) {
      .side-card {
        position: static;
        margin-top: 30px
      }
    }


    /* ================================
   PAGE — Détail Service
   ================================ */

    .detail-content h3 {
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .detail-content .meta-info {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 16px 0;
      border-top: 1px solid #f0f0f0;
      border-bottom: 1px solid #f0f0f0;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .detail-content .meta-info span {
      font-size: .84rem;
      color: var(--gray-500);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .detail-content .meta-info i {
      color: var(--green);
    }

    .consultation-list {
      list-style: none;
      padding: 0;
      margin: 16px 0 24px;
    }

    .consultation-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .92rem;
      color: var(--gray-700);
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    .consultation-list li:last-child {
      border-bottom: none;
    }

    .consultation-list li::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 6px;
    }

    .sidebar-nav a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .05);
      font-size: .87rem;
      color: var(--navy);
      font-weight: 600;
      transition: var(--transition);
    }

    .sidebar-nav a:last-child {
      border-bottom: none;
    }

    .sidebar-nav a i {
      color: var(--green);
      font-size: .8rem;
    }

    .sidebar-nav a:hover {
      color: var(--green);
      padding-left: 4px;
    }

    .sidebar-nav a.active {
      color: var(--green);
    }

    .sidebar-cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: var(--radius);
      padding: 28px;
      text-align: center;
    }

    .sidebar-cta h5 {
      color: var(--gold);
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .sidebar-cta p {
      color: rgba(255, 255, 255, .75);
      font-size: .87rem;
      margin-bottom: 18px;
    }

    .sidebar-cta a {
      background: var(--green);
      color: #fff;
      padding: 10px 22px;
      border-radius: 20px;
      font-weight: 700;
      font-size: .87rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .sidebar-cta a:hover {
      background: var(--green-lt);
      transform: translateY(-2px);
      color: #fff;
    }

    .service-nav-btns {
      display: flex;
      gap: 12px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(0, 0, 0, .07);
    }

    .service-nav-btns a {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 20px;
      background: var(--light);
      border-radius: var(--radius);
      color: var(--navy);
      font-weight: 600;
      font-size: .87rem;
      transition: var(--transition);
    }

    .service-nav-btns a:hover {
      background: rgba(46, 125, 50, .1);
      color: var(--green);
    }

    .service-nav-btns a.next {
      justify-content: flex-end;
      text-align: right;
    }

    .service-nav-btns a i {
      color: var(--green);
    }


    /* ================================
   PAGE — Détail Actualité
   ================================ */

    .inner-hero h1 {
      color: var(--white);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 16px;
    }

    .article-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, .65);
      font-size: .84rem;
    }

    .article-meta span i {
      color: var(--gold);
    }

    .cat-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(46, 125, 50, .3);
      border: 1px solid rgba(46, 125, 50, .5);
      color: #a5d6a7;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    .article-img-main {
      width: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-bottom: 32px;
    }

    .article-img-main img {
      width: 100%;
      max-height: 460px;
      object-fit: cover;
    }

    .article-content {
      font-size: 1rem;
      line-height: 1.85;
      color: #3a3a3a;
    }

    .article-content p {
      margin-bottom: 20px;
    }

    .article-content strong {
      color: var(--navy);
    }

    .article-content sup {
      color: var(--green);
      font-weight: 700;
    }

    .article-share {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 40px;
      padding-top: 24px;
      border-top: 2px solid #f0f0f0;
    }

    .article-share span {
      font-weight: 700;
      color: var(--navy);
      font-size: .9rem;
    }

    .share-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 24px;
      font-size: .82rem;
      font-weight: 700;
      transition: var(--transition);
      color: #fff;
    }

    .share-btn.fb {
      background: #1877F2;
    }

    .share-btn.tw {
      background: #1DA1F2;
    }

    .share-btn.li {
      background: #0A66C2;
    }

    .share-btn.wp {
      background: #25D366;
    }

    .share-btn:hover {
      opacity: .85;
      transform: translateY(-2px);
      color: #fff;
    }

    .related-item {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid #f0f0f0;
    }

    .related-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .related-thumb {
      width: 72px;
      height: 62px;
      flex-shrink: 0;
      border-radius: 8px;
      overflow: hidden;
    }

    .related-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .3s ease;
    }

    .related-item:hover .related-thumb img {
      transform: scale(1.08);
    }

    .related-text h6 {
      font-size: .85rem;
      color: var(--navy);
      margin-bottom: 4px;
      line-height: 1.3;
      transition: var(--transition);
    }

    .related-item:hover .related-text h6 {
      color: var(--green);
    }

    .related-text span {
      font-size: .76rem;
      color: var(--gray-500);
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-block;
      background: var(--light);
      color: var(--navy);
      font-size: .78rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
      transition: var(--transition);
    }

    .tag:hover {
      background: var(--green);
      color: var(--white);
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--green);
      font-weight: 700;
      font-size: .88rem;
      transition: var(--transition);
    }

    .back-btn:hover {
      gap: 4px;
      color: var(--green);
    }

    .actu-img {
      position: relative;
      overflow: hidden;
      height: 180px;
    }

    .actu-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .actu-body h5 {
      font-size: .95rem;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.4;
      flex: 1;
    }

    .actu-body p {
      font-size: .84rem;
      color: var(--gray-500);
      margin: 0 0 14px;
    }

    .actu-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-weight: 700;
      font-size: .84rem;
      transition: var(--transition);
    }

    #newsletter p {
      color: rgba(255, 255, 255, .8);
    }

    .newsletter-form input {
      background: transparent;
      border: none;
      width: 72%;
      color: var(--white);
      padding: 10px 18px;
      outline: none !important;
    }

    .newsletter-form .btn-sub {
      background: var(--white);
      color: var(--green);
      font-weight: 700;
      border-radius: 24px;
      padding: 10px 22px;
      border: none;
      transition: var(--transition);
      white-space: nowrap;
    }


    /* ================================
   PAGE — Détail Activité
   ================================ */

    .detail-content h3 {
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .detail-content ul.consultation-list {
      list-style: none;
      padding: 0;
      margin: 16px 0 24px;
    }

    .detail-content ul.consultation-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .92rem;
      color: var(--gray-700);
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    .detail-content ul.consultation-list li:last-child {
      border-bottom: none;
    }

    .detail-content ul.consultation-list li::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 6px;
    }

    .detail-content strong {
      color: var(--navy);
    }

    .activite-nav-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 8px;
      margin-bottom: 6px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--navy);
      transition: var(--transition);
      cursor: pointer;
    }

    .activite-nav-link:hover,
    .activite-nav-link.active {
      background: rgba(46, 125, 50, .1);
      color: var(--green);
    }

    .activite-nav-link .nav-ico {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(46, 125, 50, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: .9rem;
      flex-shrink: 0;
    }

    .activite-nav-link.active .nav-ico {
      background: var(--green);
      color: #fff;
    }

    .tag-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    .tag {
      display: inline-block;
      background: rgba(46, 125, 50, .1);
      color: var(--green);
      font-size: .78rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 16px;
      letter-spacing: .04em;
    }

    .related-card {
      display: flex;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .06);
    }

    .related-card:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .related-card img {
      width: 64px;
      height: 64px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .related-card-body h6 {
      font-size: .85rem;
      color: var(--navy);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .related-card-body span {
      font-size: .78rem;
      color: var(--gray-500);
    }

    .related-card-body a {
      color: var(--green);
      font-size: .82rem;
      font-weight: 600;
    }

    .related-card-body a:hover {
      color: var(--green-lt);
    }

    .sidebar-cta {
      background: linear-gradient(135deg, var(--green) 0%, var(--green-lt) 100%);
      border-radius: var(--radius);
      padding: 28px;
      text-align: center;
      color: var(--white);
    }

    .sidebar-cta h5 {
      color: var(--white);
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .sidebar-cta p {
      color: rgba(255, 255, 255, .85);
      font-size: .87rem;
      margin-bottom: 18px;
    }

    .sidebar-cta a {
      background: var(--white);
      color: var(--green);
      padding: 10px 22px;
      border-radius: 20px;
      font-weight: 700;
      font-size: .87rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .sidebar-cta a:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-2px);
    }

    .activite-nav-btns {
      display: flex;
      gap: 12px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(0, 0, 0, .07);
    }

    .activite-nav-btns a {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 20px;
      background: var(--light);
      border-radius: var(--radius);
      color: var(--navy);
      font-weight: 600;
      font-size: .87rem;
      transition: var(--transition);
    }

    .activite-nav-btns a:hover {
      background: rgba(46, 125, 50, .1);
      color: var(--green);
    }

    .activite-nav-btns a.next {
      justify-content: flex-end;
      text-align: right;
    }

    .activite-nav-btns a i {
      color: var(--green);
    }

    .sous-services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 24px 0;
    }

    .sous-service-card {
      border: 1px solid rgba(0, 0, 0, .1);
      border-radius: var(--radius, 10px);
      padding: 20px;
    }

    .sous-service-card h5 {
      font-size: .95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .sous-service-card p {
      font-size: .88rem;
      color: var(--gray-700);
      line-height: 1.7;
      margin-bottom: 0;
    }

    @media (max-width: 600px) {
      .sous-services-grid {
        grid-template-columns: 1fr;
      }
    }
/* ============================================================
   LNSP — Correctifs Phase 2 (Lot 1)
   ============================================================ */

/* Sélecteur de langue (barre supérieure) — liste déroulante custom,
   fonctionnelle (traduction FR ⇄ EN via translate.js). Le topbar passe
   au-dessus de la navbar sticky (z-index 1000) pour que la liste ne soit
   pas masquée. */
#topbar {
  position: relative;
  z-index: 1100;
}

.lnsp-lang {
  position: relative;
  display: inline-block;
}

.lnsp-lang-selected {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.lnsp-lang-selected:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.lnsp-lang-selected .cs-flag {
  font-size: .95rem;
}

.lnsp-lang-options {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 148px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 1200;
}

.lnsp-lang.open .lnsp-lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lnsp-lang-options .lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  color: #1a1a1a;
  font-size: .82rem;
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
  transition: background .15s ease;
}

.lnsp-lang-options .lang-option:hover {
  background: rgba(46, 125, 50, .1);
}

.lnsp-lang-options .lang-option.active {
  background: rgba(46, 125, 50, .14);
  color: var(--green, #2E7D32);
  font-weight: 600;
}

.lnsp-lang-options .lang-option .cs-flag {
  font-size: 1rem;
}

/* ============================================================
   LNSP — Contenu de page par défaut (page.php)
   Prose lisible pour les pages créées depuis l'admin.
   ============================================================ */
.page-content-wrap {
  color: var(--text, #333);
  font-size: .96rem;
  line-height: 1.75;
}
.page-content-wrap h2,
.page-content-wrap h3,
.page-content-wrap h4 {
  color: var(--navy, #0a2540);
  font-family: 'Roboto Slab', serif;
  margin: 1.6em 0 .6em;
}
.page-content-wrap h2 { font-size: 1.5rem; }
.page-content-wrap h3 { font-size: 1.25rem; }
.page-content-wrap p { margin-bottom: 1.1em; }
.page-content-wrap ul,
.page-content-wrap ol { margin: 0 0 1.1em 1.2em; }
.page-content-wrap li { margin-bottom: .5em; }
.page-content-wrap a { color: var(--green, #2E7D32); text-decoration: underline; }
.page-content-wrap img { max-width: 100%; height: auto; border-radius: 10px; }
.page-content-wrap blockquote {
  border-left: 4px solid var(--green, #2E7D32);
  padding: 8px 18px;
  margin: 1.2em 0;
  background: var(--light, #f6f8f7);
  border-radius: 0 8px 8px 0;
}


.wpcf7-response-output {
  display: none !important;
}