:root {
  --color-bg: #fff;
  --color-title: #01257d;
  --color-btn: #00abe4;
  --color-btn-hover: #0090b7;
  --color-footer-bg: #e9f1fa;
  --color-footer-separator: #1ccfcf;
  --color-footer-title: #1ccfcf;
  --color-footer-text: #01257d;
  --color-footer-bottom: #dbeaf7;
}

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--color-bg);
  color: var(--color-title);
  font-family: "Inter", "Roboto", "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* MARGE LATERALE SUR TOUTES LES SECTIONS */
section {
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 600px) {
  section {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* TYPOGRAPHIE */
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}
.erep-hero-glass h1 {
  color: #fff;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-title);
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-title);
}
a,
button {
  font-weight: 500;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  cursor: pointer;
  color: var(--color-title);
}
a:hover,
button:hover {
  color: var(--color-btn);
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 40px;
  height: 80px;
  position: relative;
  z-index: 150;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
  margin-right: 24px;
  max-width: 140px;
  object-fit: contain;
  margin-top: -10px;
}
.nav-links {
  display: flex;
  flex: 1 1 0;
  justify-content: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: var(--color-title);
  font-weight: 600;
  font-size: 1.08em;
  padding: 0 8px;
  line-height: 80px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  text-decoration: none;
  position: relative;
}
.nav-links li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-btn);
  transition: width 0.22s;
}
.nav-links li a:hover {
  color: var(--color-btn);
}
.nav-links li a:hover::after {
  width: 100%;
}
.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 80px;
}

/* BTN DEMO (NAVBAR & CTA) */
.btn-demo,
.btn-demo.cta-card,
.btn-demo.cta-main {
  background: var(--color-btn);
  color: #fff;
  border-radius: 32px;
  padding: 0.75em 2em;
  font-weight: 700;
  border: none;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(0, 171, 228, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 44px;
  line-height: 1;
  margin: 0;
  text-align: center;
  max-width: none;
  width: auto;
}
.btn-demo::after {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.4s;
}
.btn-demo:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px) scale(1.04);
}
.btn-demo:hover::after {
  left: 120%;
}

/* HERO SECTION PREMIUM */
.erep-hero-v3 {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  overflow: hidden;
}
.erep-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(1, 37, 125, 0.18),
      rgba(0, 171, 228, 0.08)
    ),
    url("../images/reunion-equipes-digitale-analyse-donnees-bureau-nuit.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.erep-hero-glass {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  animation: fadeInHero 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.erep-hero-btn-v3,
.erep-cta-btn,
.cta-btn-hero,
.btn-whatsapp {
  display: inline-block;
  background: var(--color-btn);
  color: #fff;
  font-weight: 700;
  font-size: 1.2em;
  border-radius: 32px;
  padding: 18px 48px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.13);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.5px;
  margin: 2rem auto 0 auto;
  text-align: center;
  border: none;
}
.erep-hero-btn-v3:hover,
.erep-cta-btn:hover,
.cta-btn-hero:hover,
.btn-whatsapp:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.18);
}

/* Hamburger icon */
.navbar-burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 44px;
  height: 44px;
  margin-left: auto;
  z-index: 200;
}
.navbar-burger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--color-title, #01257d);
  border-radius: 2px;
  transition: 0.3s;
}

/* Bouton de fermeture (croix) pour le menu mobile */
.navbar-close {
  display: none;
}

@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 0 8px;
    position: relative;
    z-index: 150;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 8px #0001;
    min-height: 56px;
  }
  .logo img {
    height: 30px;
    margin-right: 10px;
    margin-top: 0;
  }
  .navbar-burger {
    display: flex;
    margin-left: auto;
  }
  /* CROIX DE FERMETURE : visible seulement menu ouvert, bien positionnée et stylée */
  .navbar-close {
    display: none;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 50%;
    font-size: 2.2rem;
    color: var(--color-title, #01257d);
    cursor: pointer;
    z-index: 202;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
    line-height: 1;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.18s, background 0.18s;
  }
  .navbar.open .navbar-close {
    display: flex;
  }
  .navbar-close:hover {
    color: var(--color-btn);
    background: #f5faff;
  }
  .nav-links,
  .nav-actions {
    flex-basis: 100%;
    width: 85vw;
    max-width: 340px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background: #fff;
    position: absolute;
    right: 2vw;
    top: 56px;
    box-shadow: 0 8px 32px rgba(0, 171, 228, 0.12);
    padding: 0 0 16px 0;
    display: none;
    z-index: 200;
    border-radius: 0 0 18px 18px;
    border-left: 1px solid #e9f1fa;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 18px 28px;
    font-size: 1.2em;
    line-height: 1.4;
    color: var(--color-title, #01257d);
    border-bottom: 1px solid #e9f1fa;
    background: none;
    transition: background 0.18s, color 0.18s;
  }
  .nav-links li a:hover,
  .nav-links li a:active {
    background: var(--color-footer-bg);
    color: var(--color-btn);
  }
  .nav-actions {
    display: none !important;
    padding: 0 24px;
    margin: 0;
  }
  .navbar.open .nav-links,
  .navbar.open .nav-actions {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .navbar.open .navbar-burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar.open .navbar-burger span:nth-child(2) {
    opacity: 0;
  }
  .navbar.open .navbar-burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-links {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  .nav-links li:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  /* Fond assombri derrière le menu mobile */
  .navbar.open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 37, 125, 0.18);
    z-index: 100;
    pointer-events: auto;
    transition: opacity 0.18s;
  }
  .navbar:not(.open)::before {
    display: none;
  }
}

/* HERO MOBILE OPTIMISATION */
@media (max-width: 600px) {
  .erep-hero-bg {
    filter: blur(1.5px) brightness(0.85);
  }
  .erep-hero-glass {
    max-width: 96vw;
    margin: 16px auto;
    padding: 2.2rem 1rem 2rem 1rem;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.32);
    box-shadow: 0 4px 18px rgba(0, 171, 228, 0.1);
  }
  .erep-hero-glass h1 {
    font-size: 1.45rem;
    line-height: 1.18;
    margin-bottom: 1rem;
    word-break: break-word;
  }
  .erep-hero-glass p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  .erep-hero-btn-v3,
  .cta-btn-hero {
    font-size: 1.05em;
    padding: 14px 0;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  body,
  section {
    padding-top: 12px;
    padding-bottom: 18px;
  }
}

/* Desktop: keep everything inline */
@media (min-width: 901px) {
  .navbar-burger {
    display: none;
  }
  .navbar-close {
    display: none !important;
  }
  .nav-links,
  .nav-actions {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}
.section-avis-gmb {
  background: var(--color-footer-bg, #e9f1fa);
  padding: 64px 0 56px 0;
}
.section-avis-gmb .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.section-avis-gmb h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-title, #01257d);
  margin-bottom: 1.2rem;
}
.section-avis-gmb p {
  font-size: 1.12rem;
  color: #2a3550;
  margin-bottom: 1.3rem;
  line-height: 1.7;
}
.section-avis-gmb .img-principale {
  max-width: 340px;
  width: 100%;
  margin: 0 auto 2rem auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.07);
  object-fit: cover;
}

/* Points clés (icônes + texte) */
.avis-points {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin: 2.5rem 0 2.2rem 0;
  flex-wrap: wrap;
}
.avis-points .point {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.1);
  padding: 2.2rem 1.4rem 1.6rem 1.4rem;
  width: 220px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.22s, transform 0.22s, border 0.18s;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}
.avis-points .point:hover {
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.18);
  transform: translateY(-6px) scale(1.04);
  border: 2px solid var(--color-btn, #00abe4);
}
.avis-points .point img {
  width: 66px;
  height: 66px;
  margin-bottom: 1.3rem;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0001;
  background: #f7fbff;
  transition: box-shadow 0.18s, background 0.18s;
}
.avis-points .point:hover img {
  box-shadow: 0 4px 16px rgba(0, 171, 228, 0.13);
  background: #e9f1fa;
}
.avis-points .point span {
  font-size: 1.18rem;
  color: var(--color-title, #01257d);
  font-weight: 700;
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
  text-align: center;
  transition: color 0.18s;
}
.avis-points .point:hover span {
  color: var(--color-btn, #00abe4);
}

/* Témoignage : style général */
.avis-temoignage {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.1);
  padding: 1.5rem 1rem 1.2rem 1rem;
  max-width: 420px;
  margin: 2rem auto 0 auto;
  text-align: left;
  border-left: 4px solid var(--color-btn, #00abe4);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.temoignage-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.temoignage-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-btn, #00abe4);
  flex-shrink: 0;
}

.temoignage-nom {
  display: block;
  color: var(--color-btn-hover, #0090b7);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  margin-top: 0.2rem;
}

.temoignage-stars {
  margin-top: 0.1rem;
}
.temoignage-stars img {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 1px;
}

.temoignage-texte {
  font-style: italic;
  font-size: 1.13rem;
  color: #2a3550;
  line-height: 1.7;
  margin: 0.8rem 0 0 0;
  text-align: left;
  position: relative;
}

.guillemets {
  font-size: 2rem;
  color: var(--color-footer-title, #1ccfcf);
  vertical-align: middle;
  font-family: serif;
  margin: 0 0.2em;
}

/* Responsive mobile : amélioration du témoignage */
@media (max-width: 600px) {
  .avis-temoignage {
    padding: 1.2rem 0.7rem 1.1rem 0.7rem;
    max-width: 98vw;
    margin: 1.5rem auto 0 auto;
    border-left: 4px solid var(--color-btn, #00abe4);
    box-shadow: 0 4px 24px rgba(0, 171, 228, 0.13);
    background: #fff;
    border-radius: 16px;
    gap: 0.7rem;
  }
  .temoignage-header {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
  }
  .temoignage-photo {
    margin-bottom: 0.5rem;
    margin-right: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  .temoignage-nom {
    font-size: 1.04rem;
    margin-bottom: 0.2rem;
    color: var(--color-btn-hover, #0090b7);
    text-align: center;
  }
  .temoignage-stars {
    margin-bottom: 0.2rem;
    text-align: center;
  }
  .temoignage-stars img {
    width: 18px;
    height: 18px;
    margin-right: 1px;
  }
  .temoignage-texte {
    font-size: 1.04rem;
    line-height: 1.6;
    margin-top: 0.7rem;
    text-align: center;
    color: #2a3550;
  }
  .guillemets {
    font-size: 1.6rem;
    color: var(--color-footer-title, #1ccfcf);
    vertical-align: middle;
    font-family: serif;
    margin: 0 0.2em;
  }
}

@media (max-width: 600px) {
  .avis-temoignage {
    padding: 1.1rem 0.5rem 1rem 0.7rem;
    max-width: 98vw;
    gap: 0.7rem;
  }
  .temoignage-header {
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
  }
  .temoignage-photo {
    width: 44px;
    height: 44px;
  }
  .temoignage-nom {
    font-size: 0.98rem;
  }
  .temoignage-stars img {
    width: 17px;
    height: 17px;
  }
  .temoignage-texte {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.guillemets {
  font-size: 2.2rem;
  color: var(--color-footer-title, #1ccfcf);
  vertical-align: middle;
  font-family: serif;
}
@media (max-width: 600px) {
  .avis-temoignage {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    max-width: 98vw;
  }
  .temoignage-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .temoignage-photo {
    margin-bottom: 0.7rem;
    margin-right: 0;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .avis-points {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    margin: 1.2rem 0 1.1rem 0;
  }
  .avis-points .point {
    width: 100%;
    max-width: 320px;
    min-height: 120px;
    padding: 1rem 0.6rem;
  }
}
@media (max-width: 600px) {
  .section-avis-gmb {
    padding: 36px 0 28px 0;
  }
  .section-avis-gmb h2 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
  }
  .section-avis-gmb .img-principale {
    max-width: 98vw;
    margin-bottom: 1.2rem;
    border-radius: 12px;
  }
  .avis-points {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    margin: 1.2rem 0 1.1rem 0;
  }
  .avis-points .point {
    width: 100%;
    max-width: 320px;
    padding: 1rem 0.6rem;
  }
  .avis-temoignage {
    padding: 1.2rem 0.6rem 1rem 0.6rem;
    max-width: 98vw;
  }
  .avis-temoignage img {
    width: 68px;
    border-radius: 8px;
  }
}
.erep-about {
  background: var(--color-footer-bg, #e9f1fa);
  padding: 48px 0 40px 0;
}

.about-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 1.5rem;
  flex-wrap: wrap;
  min-height: 180px;
}

.about-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -12px; /* Décale légèrement la photo vers le haut */
}

.about-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 32px rgba(0, 171, 228, 0.13);
  border: 3px solid var(--color-btn, #00abe4);
  background: #fff;
  display: block;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
}

.about-photo img:hover {
  box-shadow: 0 12px 40px rgba(0, 171, 228, 0.2);
  border-color: var(--color-btn-hover, #0090b7);
  transform: scale(1.04);
}

.about-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.erep-about h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-title, #01257d);
  margin-bottom: 0.7rem;
  line-height: 1.15;
}

.erep-about p {
  font-size: 1.18rem;
  color: #2a3550;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.about-founder {
  display: block;
  margin-top: 0.8rem;
  color: var(--color-btn-hover, #0090b7);
  font-size: 1.08rem;
  font-weight: 700;
}

.erep-link {
  display: inline-block;
  color: var(--color-btn, #00abe4);
  font-weight: 700;
  border-bottom: 2px solid var(--color-btn, #00abe4);
  padding: 0.18em 0.4em;
  border-radius: 4px;
  background: #fff;
  margin-top: 0.7rem;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  box-shadow: 0 2px 8px rgba(0, 171, 228, 0.04);
}

.erep-link:hover {
  color: var(--color-btn-hover, #0090b7);
  border-color: var(--color-btn-hover, #0090b7);
  background: #e9f1fa;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    gap: 1.1rem;
  }
  .about-photo img {
    width: 110px;
    height: 110px;
  }
  .erep-about h2 {
    font-size: 1.5rem;
  }
  .erep-about p {
    font-size: 1.04rem;
  }
}

@media (max-width: 600px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    text-align: center;
    min-height: unset;
  }
  .about-photo {
    margin-top: 0;
    margin-bottom: 0.4rem;
  }
  .about-photo img {
    width: 80px;
    height: 80px;
  }
  .erep-about h2 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
  }
  .erep-about p {
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
  }
  .about-founder {
    font-size: 0.98rem;
    margin-top: 0.5rem;
  }
  .erep-link {
    font-size: 0.98rem;
    margin-top: 0.5rem;
    padding: 0.14em 0.25em;
  }
}
.erep-services {
  background: var(--color-bg, #fff);
  padding: 64px 0 56px 0;
}
.erep-services h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-title, #01257d);
  margin-bottom: 2.4rem;
  letter-spacing: -0.01em;
}
.erep-services-list {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.erep-service-card {
  background: #f7fbff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.09);
  padding: 2.2rem 1.6rem 1.5rem 1.6rem;
  width: 290px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
}
.erep-service-card:hover {
  box-shadow: 0 8px 36px rgba(0, 171, 228, 0.16);
  transform: translateY(-6px) scale(1.03);
  border: 2px solid var(--color-btn, #00abe4);
  background: #e9f1fa;
}
.erep-service-icon {
  width: 70px;
  height: 70px;
  background: var(--color-btn, #00abe4);
  color: #fff;
  border-radius: 50%;
  font-size: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.18s, color 0.18s;
}
.erep-service-card:hover .erep-service-icon {
  background: var(--color-btn-hover, #0090b7);
  color: #fff;
}
.erep-service-card h3 {
  font-size: 1.18rem;
  color: var(--color-title, #01257d);
  font-weight: 700;
  margin-bottom: 0.8rem;
  margin-top: 0;
  letter-spacing: 0.01em;
}
.erep-service-card p {
  font-size: 1.05rem;
  color: #2a3550;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .erep-services-list {
    gap: 1.2rem;
  }
  .erep-service-card {
    width: 210px;
    min-height: 180px;
    padding: 1.3rem 0.7rem 1rem 0.7rem;
  }
  .erep-service-icon {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .erep-services {
    padding: 36px 0 28px 0;
  }
  .erep-services h2 {
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
  }
  .erep-services-list {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 0 0.4rem;
  }
  .erep-service-card {
    width: 100%;
    max-width: 350px;
    min-height: 120px;
    padding: 1rem 0.6rem;
  }
  .erep-service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
}
.piliers-section {
  background: var(--color-bg, #fff);
  padding: 64px 0 56px 0;
}

.piliers-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-title, #01257d);
  margin-bottom: 2.4rem;
  letter-spacing: -0.01em;
}

.piliers-grid {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pilier-card {
  background: #f7fbff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.09);
  padding: 2.2rem 1.6rem 1.5rem 1.6rem;
  width: 290px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
}
.pilier-card:hover {
  box-shadow: 0 8px 36px rgba(0, 171, 228, 0.16);
  transform: translateY(-6px) scale(1.03);
  border: 2px solid var(--color-btn, #00abe4);
  background: #e9f1fa;
}

.pilier-icone {
  width: 64px;
  height: 64px;
  background: var(--color-btn, #00abe4);
  color: #fff;
  border-radius: 50%;
  font-size: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.18s, color 0.18s;
}
.pilier-card:hover .pilier-icone {
  background: var(--color-btn-hover, #0090b7);
  color: #fff;
}

.pilier-card h3 {
  font-size: 1.18rem;
  color: var(--color-title, #01257d);
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: 0;
  letter-spacing: 0.01em;
}
.pilier-card p {
  font-size: 1.05rem;
  color: #2a3550;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .piliers-grid {
    gap: 1.2rem;
  }
  .pilier-card {
    width: 210px;
    min-height: 160px;
    padding: 1.3rem 0.7rem 1rem 0.7rem;
  }
  .pilier-icone {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 600px) {
  .piliers-section {
    padding: 36px 0 28px 0;
  }
  .piliers-title {
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
  }
  .piliers-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 0 0.4rem;
  }
  .pilier-card {
    width: 100%;
    max-width: 350px;
    min-height: 100px;
    padding: 1rem 0.6rem;
  }
  .pilier-icone {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
}
.secteurs-section {
  background: var(--color-footer-bg, #e9f1fa);
  padding: 64px 0 56px 0;
}

.secteurs-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.secteurs-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-title, #01257d);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.secteurs-intro {
  font-size: 1.15rem;
  color: #2a3550;
  margin: 0 auto;
  max-width: 540px;
  line-height: 1.6;
}

.secteurs-grid {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.secteur-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.09);
  padding: 2.2rem 1.4rem 1.5rem 1.4rem;
  width: 270px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
}
.secteur-card:hover {
  box-shadow: 0 8px 36px rgba(0, 171, 228, 0.16);
  transform: translateY(-6px) scale(1.03);
  border: 2px solid var(--color-btn, #00abe4);
  background: #f7fbff;
}

.secteur-icone {
  width: 60px;
  height: 60px;
  background: var(--color-btn, #00abe4);
  color: #fff;
  border-radius: 50%;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.18s, color 0.18s;
}
.secteur-card:hover .secteur-icone {
  background: var(--color-btn-hover, #0090b7);
  color: #fff;
}

.secteur-nom {
  font-size: 1.13rem;
  color: var(--color-title, #01257d);
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
  letter-spacing: 0.01em;
}
.secteur-accroche {
  font-size: 1.01rem;
  color: #2a3550;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .secteurs-grid {
    gap: 1.2rem;
  }
  .secteur-card {
    width: 180px;
    min-height: 140px;
    padding: 1.3rem 0.7rem 1rem 0.7rem;
  }
  .secteur-icone {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 600px) {
  .secteurs-section {
    padding: 36px 0 28px 0;
  }
  .secteurs-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  .secteurs-intro {
    font-size: 1.01rem;
    margin-bottom: 1.1rem;
  }
  .secteurs-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 0 0.4rem;
  }
  .secteur-card {
    width: 100%;
    max-width: 350px;
    min-height: 100px;
    padding: 1rem 0.6rem;
  }
  .secteur-icone {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
}
.erep-testimonials {
  background: var(--color-bg, #fff);
  padding: 64px 0 56px 0;
}

.erep-testimonials h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-title, #01257d);
  margin-bottom: 2.4rem;
  letter-spacing: -0.01em;
}

.erep-testimonials-list {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.erep-testimonial {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  background: #f7fbff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.09);
  padding: 2.2rem 1.6rem 1.5rem 1.6rem;
  min-width: 320px;
  max-width: 400px;
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}
.erep-testimonial:hover {
  box-shadow: 0 8px 36px rgba(0, 171, 228, 0.16);
  transform: translateY(-6px) scale(1.03);
  border: 2px solid var(--color-btn, #00abe4);
  background: #e9f1fa;
}

.erep-testimonial-avatar {
  flex-shrink: 0;
}
.erep-testimonial-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-btn, #00abe4);
  box-shadow: 0 2px 12px rgba(0, 171, 228, 0.08);
  background: #fff;
  display: block;
  transition: border 0.18s, box-shadow 0.18s;
}
.erep-testimonial:hover .erep-testimonial-avatar img {
  border-color: var(--color-btn-hover, #0090b7);
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.13);
}

.erep-testimonial-bubble {
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 1.2rem 0.8rem 1.2rem;
  font-size: 1.08rem;
  color: #2a3550;
  font-style: italic;
  position: relative;
  box-shadow: 0 2px 8px #0001;
  min-width: 180px;
  line-height: 1.7;
  text-align: left;
}
.erep-testimonial-bubble::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 28px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 18px solid #fff;
}
.erep-testimonial-bubble span {
  display: block;
  margin-top: 1rem;
  color: var(--color-btn-hover, #0090b7);
  font-weight: 700;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 900px) {
  .erep-testimonials-list {
    gap: 1.2rem;
  }
  .erep-testimonial {
    min-width: 220px;
    max-width: 340px;
    padding: 1.3rem 0.7rem 1rem 0.7rem;
  }
  .erep-testimonial-avatar img {
    width: 48px;
    height: 48px;
  }
  .erep-testimonial-bubble {
    font-size: 0.99rem;
    padding: 0.8rem 0.7rem 0.7rem 0.9rem;
    min-width: 120px;
  }
  .erep-testimonial-bubble::before {
    left: -12px;
    top: 18px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid #fff;
  }
  .erep-testimonial-bubble span {
    font-size: 0.95rem;
    margin-top: 0.7rem;
  }
}
@media (max-width: 600px) {
  .erep-testimonials {
    padding: 36px 0 28px 0;
  }
  .erep-testimonials h2 {
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
  }
  .erep-testimonials-list {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 0 0.4rem;
  }
  .erep-testimonial {
    min-width: 0;
    max-width: 98vw;
    padding: 1rem 0.6rem;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .erep-testimonial-avatar img {
    width: 44px;
    height: 44px;
  }
  .erep-testimonial-bubble {
    font-size: 0.98rem;
    padding: 0.7rem 0.6rem 0.6rem 0.7rem;
    min-width: 0;
    text-align: center;
  }
  .erep-testimonial-bubble::before {
    display: none;
  }
  .erep-testimonial-bubble span {
    font-size: 0.93rem;
    margin-top: 0.5rem;
  }
}
.erep-cta {
  background: linear-gradient(120deg, #e9f1fa 0%, #c2e9fb 100%);
  padding: 64px 0 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.erep-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-title, #01257d);
  margin-bottom: 2.2rem;
  letter-spacing: -0.01em;
}
.erep-cta-btn {
  display: inline-block;
  background: var(--color-btn, #00abe4);
  color: #fff;
  font-weight: 700;
  font-size: 1.2em;
  border-radius: 32px;
  padding: 18px 48px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.13);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.5px;
  border: none;
  text-align: center;
}
.erep-cta-btn:hover {
  background: var(--color-btn-hover, #0090b7);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.18);
}

/* Optionnel : petite illustration décorative */
.erep-cta::after {
  content: "🚀";
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 3.5rem;
  opacity: 0.1;
  pointer-events: none;
}
/* Améliorations du style du CTA final */
.cta-final-box {
  background: linear-gradient(135deg, #00abe4 0%, #0077b6 100%);
  color: #fff;
  box-shadow: 0 12px 48px rgba(0, 171, 228, 0.3);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cta-final-box:hover {
  box-shadow: 0 20px 60px rgba(0, 171, 228, 0.5);
  transform: translateY(-6px) scale(1.05);
}
.cta-final-box h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.cta-final-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0f7ff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.cta-btns-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-whatsapp,
.cta-btn-hero {
  padding: 16px 40px;
  font-size: 1.15rem;
  border-radius: 36px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.btn-whatsapp {
  background: #25d366;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  transform: translateY(-4px) scale(1.07);
}
.cta-btn-hero {
  background: #0077b6;
  color: #fff;
}
.cta-btn-hero:hover {
  background: #005f86;
  box-shadow: 0 12px 40px rgba(0, 119, 182, 0.6);
  transform: translateY(-4px) scale(1.07);
}
/* Décorations supplémentaires */
.cta-final-box::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
  pointer-events: none;
  border-radius: 32px;
  z-index: 0;
}
.cta-final-box > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .cta-final-box {
    padding: 2rem 1.5rem;
  }
  .cta-final-box h2 {
    font-size: 1.8rem;
  }
  .cta-final-message {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .btn-whatsapp,
  .cta-btn-hero {
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
  }
  .cta-btns-group {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer-custom {
  background: linear-gradient(120deg, #e9f1fa 0%, #dbeaf7 100%);
  color: var(--color-footer-text, #01257d);
  padding: 56px 0 0 0;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
}
.footer-custom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3.2rem;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 2rem;
}
.footer-custom-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 2.2rem;
}
.footer-custom-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-custom-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 171, 228, 0.1);
  background: #fff;
}
.footer-custom-slogan {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-btn, #00abe4);
  line-height: 1.4;
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
}
.footer-custom-col h3 {
  font-size: 1.09rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: var(--color-footer-title, #1ccfcf);
  letter-spacing: 0.01em;
  margin-top: 1.2rem;
}
.footer-custom-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}
.footer-custom-col ul li {
  margin-bottom: 0.5rem;
}
.footer-custom-col ul li a {
  color: var(--color-footer-text, #01257d);
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 500;
}
.footer-custom-col ul li a:hover {
  color: var(--color-btn, #00abe4);
  text-decoration: underline;
}
.footer-custom-contact-list {
  margin-bottom: 1.2rem;
}
.footer-custom-icon {
  margin-right: 0.5em;
  font-size: 1.15em;
  vertical-align: middle;
}
.footer-custom-social {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.7rem;
}
.footer-custom-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #1ccfcf;
  box-shadow: 0 2px 8px #0001;
  font-size: 1.3rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.footer-custom-social a:hover {
  background: var(--color-btn, #00abe4);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 171, 228, 0.13);
}
.footer-custom-bottom {
  background: var(--color-footer-bottom, #dbeaf7);
  color: var(--color-footer-text, #01257d);
  text-align: center;
  padding: 1.2rem 0 1.1rem 0;
  font-size: 1.01rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
  border-top: 1.5px solid var(--color-footer-separator, #1ccfcf);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-custom-container {
    flex-direction: column;
    gap: 2.1rem;
    align-items: flex-start;
    padding: 0 1rem;
  }
  .footer-custom-col {
    min-width: 0;
  }
  .footer-custom-social {
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 600px) {
  .footer-custom {
    padding: 36px 0 0 0;
    font-size: 0.98rem;
  }
  .footer-custom-logo {
    width: 80px;
    margin-bottom: 0.7rem;
  }
  .footer-custom-slogan {
    font-size: 1.01rem;
    margin-bottom: 0.5rem;
  }
  .footer-custom-col h3 {
    font-size: 1.01rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
  }
  .footer-custom-bottom {
    font-size: 0.93rem;
    padding: 0.7rem 0 0.7rem 0;
  }
}
.footer-mobile {
  background: linear-gradient(120deg, #e9f1fa 0%, #dbeaf7 100%);
  color: #01257d;
  padding: 32px 0 0 0;
  font-size: 1.05rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 32px rgba(0, 171, 228, 0.06);
  text-align: center;
}
.footer-mobile-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}
.footer-mobile-logo {
  width: 80px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 171, 228, 0.1);
  background: #fff;
  margin-bottom: 0.6rem;
}
.footer-mobile-slogan {
  font-size: 1.13rem;
  font-weight: 700;
  color: #00abe4;
  line-height: 1.4;
}
.footer-mobile-separator {
  width: 80%;
  height: 2.5px;
  margin: 1.1rem auto;
  background: linear-gradient(90deg, #1ccfcf 0%, #00abe4 100%);
  border-radius: 2px;
  opacity: 0.5;
}
.footer-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.footer-mobile-links h3 {
  color: #1ccfcf;
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.footer-mobile-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
}
.footer-mobile-links li {
  margin-bottom: 0.3rem;
}
.footer-mobile-links a {
  color: #01257d;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid transparent;
  padding: 2px 0;
  transition: color 0.18s, border-bottom 0.18s;
}
.footer-mobile-links a:hover {
  color: #00abe4;
  border-bottom: 1.5px solid #00abe4;
  background: #e9f1fa;
  border-radius: 3px;
}
.footer-mobile-contact {
  margin: 1.5rem 0 0.7rem 0;
}
.footer-mobile-contact h3 {
  color: #1ccfcf;
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.footer-mobile-contact ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
}
.footer-mobile-contact li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}
.footer-mobile-icon {
  color: #1ccfcf;
  font-size: 1.2em;
}
.footer-mobile-address {
  font-weight: 600;
}
.footer-mobile-social {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 0.7rem;
}
.footer-mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #1ccfcf;
  box-shadow: 0 2px 8px #0001;
  font-size: 1.3rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #e9f1fa;
}
.footer-mobile-social a:hover {
  background: #00abe4;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 171, 228, 0.13);
  transform: scale(1.13);
  border-color: #1ccfcf;
}
.footer-mobile-bottom {
  border-top: 2.5px solid #1ccfcf;
  margin-top: 2.1rem;
  padding: 1.1rem 0 0.8rem 0;
  background: #dbeaf7;
  color: #01257d;
  font-size: 0.98rem;
  font-weight: 500;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  letter-spacing: 0.01em;
}
.erep-blog {
  background: var(--color-bg, #fff);
  padding: 64px 0 56px 0;
}
.erep-blog h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-title, #01257d);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.erep-blog-list {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.erep-blog-article {
  background: #f7fbff;
  border-radius: 20px;
  box-shadow: 0 6px 28px rgba(0, 171, 228, 0.12);
  width: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.erep-blog-article:hover {
  box-shadow: 0 12px 48px rgba(0, 171, 228, 0.2);
  transform: translateY(-6px) scale(1.04);
}
.erep-blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.erep-blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-title, #01257d);
  margin: 1.2rem 1.5rem 0.8rem 1.5rem;
  line-height: 1.3;
}
.erep-blog-excerpt {
  font-size: 1.05rem;
  color: #2a3550;
  margin: 0 1.5rem 1.5rem 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}
.erep-blog-readmore {
  display: inline-block;
  margin: 0 1.5rem 1.8rem 1.5rem;
  padding: 0.6em 1.4em;
  background: var(--color-btn, #00abe4);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.erep-blog-readmore:hover {
  background: var(--color-btn-hover, #0090b7);
  transform: translateY(-2px) scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .erep-blog-list {
    gap: 1.6rem;
  }
  .erep-blog-article {
    width: 280px;
  }
}
@media (max-width: 600px) {
  .erep-blog-list {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .erep-blog-article {
    width: 100%;
    max-width: 360px;
  }
}

/* services*/
.hero-service {
  background: linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.82) 60%,
      rgba(30, 30, 30, 0.65) 100%
    ),
    url("../images/gestion-avis-google-profile.webp") center/cover no-repeat;
  color: #fff;
  padding: 70px 20px 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 14px 48px rgba(1, 37, 125, 0.12);
}

.hero-service::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 140px;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}
.hero-service h1 {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 0 4px 18px rgba(26, 35, 126, 0.12);
  position: relative;
  z-index: 2;
}
.hero-service p {
  color: #e0f7fa;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
  opacity: 0.98;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(1, 37, 125, 0.08);
  position: relative;
  z-index: 2;
}
.hero-service .cta-btn {
  position: relative;
  z-index: 2;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, #ffa000 60%, #ffb300 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 700px) {
  .hero-service {
    padding: 48px 8px 32px 8px;
    min-height: 260px;
  }
  .hero-service h1 {
    font-size: 1.4rem;
  }
  .hero-service p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
}
.features-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  background: #fff;
  padding: 60px 20px 50px 20px;
  position: relative;
}

.feature-card {
  background: linear-gradient(120deg, #f3f6fd 70%, #e8eaf6 100%);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(26, 35, 126, 0.09),
    0 1.5px 6px rgba(26, 35, 126, 0.06);
  padding: 36px 30px 32px 30px;
  max-width: 320px;
  flex: 1 1 260px;
  text-align: left;
  transition: transform 0.17s, box-shadow 0.17s;
  border: 1.5px solid #dde2f4;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #ffb300 0%, transparent 70%);
  opacity: 0.08;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 8px 28px rgba(26, 35, 126, 0.13),
    0 2px 10px rgba(26, 35, 126, 0.08);
  border-color: #ffb300;
}

.feature-card h3 {
  color: #1a237e;
  margin-top: 0;
  font-size: 1.22rem;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.feature-card p {
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .features-section {
    flex-direction: column;
    gap: 24px;
    padding: 40px 10px 30px 10px;
  }
  .feature-card {
    max-width: 100%;
    padding: 28px 18px 24px 18px;
  }
}
.testimonial-section {
  background: linear-gradient(120deg, #e8eaf6 70%, #f3f6fd 100%);
  padding: 60px 20px 50px 20px;
  text-align: center;
}

.testimonial-section h2 {
  color: #1a237e;
  margin-bottom: 34px;
  font-size: 2.1rem;
  font-weight: 800;
}

.testimonial {
  display: inline-block;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(26, 35, 126, 0.1);
  padding: 36px 28px 30px 28px;
  max-width: 340px;
  margin: 18px 14px;
  vertical-align: top;
  position: relative;
  text-align: left;
}

.testimonial-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.1);
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.testimonial p {
  font-style: italic;
  color: #444;
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial .author {
  font-weight: bold;
  color: #3949ab;
  font-size: 1.02rem;
  letter-spacing: 0.1px;
}

@media (max-width: 900px) {
  .testimonial {
    display: block;
    margin: 24px auto;
    max-width: 98vw;
  }
}

.erep-etapes-gmb {
  background: #f7fbff;
  padding: 64px 0 56px 0;
}
.erep-etapes-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 2.8rem;
  letter-spacing: -0.01em;
}
.erep-etapes-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.erep-etape {
  display: flex;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 28px rgba(0, 171, 228, 0.1);
  overflow: hidden;
  align-items: stretch;
  transition: box-shadow 0.22s, transform 0.22s;
}
.erep-etape:hover {
  box-shadow: 0 12px 48px rgba(0, 171, 228, 0.18);
  transform: translateY(-4px) scale(1.02);
}
.erep-etape-img {
  flex: 0 0 220px;
  background: #e9f1fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
}
.erep-etape-img img {
  width: 90%;
  max-width: 180px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0, 171, 228, 0.09);
}
.erep-etape-content {
  flex: 1 1 0;
  padding: 2rem 2.2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.erep-etape-num {
  font-size: 0.97rem;
  font-weight: 800;
  color: #fff;
  background: #00abe4;
  border-radius: 6px;
  padding: 0.2em 0.9em;
  display: inline-block;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
}
.erep-etape-content h3 {
  font-size: 1.35rem;
  color: #01257d;
  font-weight: 800;
  margin-bottom: 0.7rem;
  margin-top: 0;
}
.erep-etape-content p {
  font-size: 1.08rem;
  color: #2a3550;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.erep-etapes-cta {
  text-align: center;
  margin-top: 2.8rem;
}
.erep-etapes-btn {
  display: inline-block;
  background: #ff4d00;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 32px;
  padding: 1.1em 2.6em;
  box-shadow: 0 4px 24px rgba(255, 77, 0, 0.11);
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.04em;
}
.erep-etapes-btn:hover {
  background: #d13d00;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(255, 77, 0, 0.18);
}

/* Responsive */
@media (max-width: 900px) {
  .erep-etape {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .erep-etape-img {
    width: 100%;
    min-height: 140px;
    justify-content: center;
  }
  .erep-etape-content {
    padding: 1.2rem 1.1rem 1.6rem 1.1rem;
  }
}
@media (max-width: 600px) {
  .erep-etapes-gmb {
    padding: 32px 0 24px 0;
  }
  .erep-etapes-title {
    font-size: 1.25rem;
    margin-bottom: 1.3rem;
  }
  .erep-etapes-list {
    gap: 1.3rem;
  }
  .erep-etape-content h3 {
    font-size: 1.08rem;
  }
  .erep-etape-content p {
    font-size: 0.97rem;
  }
  .erep-etapes-btn {
    font-size: 1rem;
    padding: 0.9em 1.4em;
  }
}
.erep-surmesure {
  background: #f9f9f9;
  padding: 72px 0 64px 0;
}

.erep-surmesure-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.erep-surmesure-visuel {
  position: relative;
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
}
.erep-surmesure-img {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.1);
  object-fit: cover;
  background: #fff;
  z-index: 1;
}

/* Badges décoratifs */
.erep-surmesure-badge {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 171, 228, 0.08);
  opacity: 0.95;
}
.badge-green {
  top: -22px;
  right: -28px;
  background: #e6f9f1;
  color: #00c48c;
  width: 72px;
  height: 72px;
  font-size: 2.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #00c48c;
  z-index: 2;
}
.badge-orange {
  bottom: 30px;
  left: -32px;
  background: #fff7e6;
  border: 5px solid #ffb347;
  width: 42px;
  height: 42px;
}
.badge-pink {
  top: 38%;
  right: -25px;
  background: #ffe6f6;
  border: 4px solid #ff6fcb;
  width: 30px;
  height: 30px;
}

/* Contenu */
.erep-surmesure-content {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 520px;
}
.erep-surmesure-intro {
  color: #ff4d00;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  display: inline-block;
}
.erep-surmesure-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 1.2rem;
  line-height: 1.13;
  text-transform: uppercase;
}
.erep-surmesure-content p {
  font-size: 1.11rem;
  color: #2a3550;
  margin-bottom: 1.1rem;
  line-height: 1.7;
}
.erep-surmesure-btn {
  display: inline-block;
  background: #ff4d00;
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  border-radius: 32px;
  padding: 1.1em 2.6em;
  box-shadow: 0 4px 24px rgba(255, 77, 0, 0.11);
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.04em;
  border: none;
}
.erep-surmesure-btn:hover {
  background: #d13d00;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(255, 77, 0, 0.18);
}

/* Responsive */
@media (max-width: 1000px) {
  .erep-surmesure-wrapper {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  .erep-surmesure-visuel,
  .erep-surmesure-content {
    min-width: 0;
    max-width: 100vw;
  }
  .erep-surmesure-content {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .erep-surmesure {
    padding: 32px 0 24px 0;
  }
  .erep-surmesure-content h2 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
  }
  .erep-surmesure-content p {
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
  }
  .erep-surmesure-btn {
    font-size: 1rem;
    padding: 0.9em 1.4em;
    margin-top: 1.1rem;
  }
  .erep-surmesure-visuel {
    min-width: 0;
  }
  .erep-surmesure-img {
    max-width: 90vw;
  }
  .badge-green {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    top: -14px;
    right: -14px;
  }
  .badge-orange {
    width: 28px;
    height: 28px;
    bottom: 16px;
    left: -14px;
  }
  .badge-pink {
    width: 18px;
    height: 18px;
    top: 38%;
    right: -10px;
  }
}
:root {
  --color-main: #01257d;
  --color-accent: #00abe4;
  --color-bg: #f7fbff;
  --color-light: #fff;
  --color-green: #00c48c;
  --color-red: #ff4d4f;
  --color-grey: #2a3550;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-grey);
  margin: 0;
  padding: 0;
}

/* HERO */
.gmb-hero {
  padding: 64px 0 30px 0;
  background: var(--color-light);
}
.gmb-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  flex-wrap: wrap;
  padding: 0 2rem;
}
.gmb-hero-text {
  flex: 1 1 350px;
  min-width: 300px;
}
.gmb-hero-subtitle {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.02rem;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  display: inline-block;
}
.gmb-hero-text h1 {
  font-size: 2.5rem;
  color: var(--color-main);
  font-weight: 900;
  margin-bottom: 1.2rem;
  line-height: 1.13;
}
.gmb-hero-text p {
  font-size: 1.13rem;
  color: var(--color-grey);
  line-height: 1.7;
  margin-bottom: 0.7rem;
}
.gmb-hero-illus {
  flex: 0 0 350px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gmb-hero-illus img {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.1);
  background: #fff;
  object-fit: contain;
}

/* CARDS */
.gmb-hero-cards {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 1rem;
}
.gmb-card {
  background: var(--color-bg);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.09);
  padding: 2.2rem 1.5rem 1.6rem 1.5rem;
  width: 320px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.22s, transform 0.22s;
  text-align: center;
}
.gmb-card:hover {
  box-shadow: 0 8px 36px rgba(0, 171, 228, 0.16);
  transform: translateY(-6px) scale(1.03);
}
.gmb-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.1rem;
  color: var(--color-accent);
}
.gmb-card h3 {
  font-size: 1.18rem;
  color: var(--color-main);
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: 0;
}
.gmb-card p {
  font-size: 1.05rem;
  color: var(--color-grey);
  margin: 0;
  line-height: 1.6;
}

/* COMPARATIF */
.gmb-comparatif {
  background: #fff;
  padding: 48px 0 64px 0;
}
.gmb-comparatif-wrapper {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.gmb-comparatif-card {
  flex: 1 1 340px;
  min-width: 260px;
  background: #f7fbff;
  border-radius: 22px;
  box-shadow: 0 6px 28px rgba(0, 171, 228, 0.1);
  padding: 2.2rem 1.5rem 2.2rem 1.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.22s;
}
.gmb-comparatif-card h2 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-main);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.gmb-comparatif-card h2 span {
  color: var(--color-accent);
}
.gmb-comparatif-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gmb-comparatif-optimise ul li {
  margin-bottom: 0.7rem;
  padding-left: 1.5em;
  position: relative;
  color: var(--color-green);
  font-weight: 500;
}
.gmb-comparatif-optimise ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-size: 1.08em;
  font-weight: bold;
}
.gmb-comparatif-classique ul li {
  margin-bottom: 0.7rem;
  padding-left: 1.5em;
  position: relative;
  color: var(--color-red);
  font-weight: 500;
}
.gmb-comparatif-classique ul li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-size: 1.08em;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .gmb-hero-content {
    flex-direction: column;
    gap: 2.2rem;
    text-align: center;
  }
  .gmb-hero-illus,
  .gmb-hero-text {
    min-width: 0;
    max-width: 100vw;
  }
  .gmb-hero-cards {
    gap: 1.2rem;
  }
  .gmb-card {
    width: 100%;
    max-width: 340px;
    min-width: 220px;
  }
  .gmb-comparatif-wrapper {
    flex-direction: column;
    gap: 1.8rem;
  }
  .gmb-comparatif-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 1.1rem auto;
  }
}
@media (max-width: 600px) {
  .gmb-hero {
    padding: 32px 0 18px 0;
  }
  .gmb-hero-text h1 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
  }
  .gmb-hero-text p {
    font-size: 1.01rem;
  }
  .gmb-hero-cards {
    gap: 0.8rem;
  }
  .gmb-card {
    padding: 1.3rem 0.7rem 1rem 0.7rem;
    min-width: 0;
  }
  .gmb-comparatif {
    padding: 24px 0 32px 0;
  }
  .gmb-comparatif-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    min-width: 0;
  }
  .gmb-comparatif-card h2 {
    font-size: 1.01rem;
  }
}
.erep-faq {
  background: #f7fbff;
  padding: 64px 0 56px 0;
}

.erep-faq-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 2.6rem;
  letter-spacing: -0.01em;
}

.erep-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 0 1.2rem;
}

.erep-faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.08);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
  border-left: 5px solid #00abe4;
}

.erep-faq-item[open] {
  box-shadow: 0 8px 36px rgba(0, 171, 228, 0.13);
  transform: translateY(-2px) scale(1.01);
  border-left: 5px solid #1ccfcf;
}

.erep-faq-item summary {
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  font-size: 1.13rem;
  font-weight: 700;
  color: #01257d;
  position: relative;
  outline: none;
  transition: background 0.14s;
  list-style: none;
}

.erep-faq-item summary::marker,
.erep-faq-item summary::-webkit-details-marker {
  display: none;
}

.erep-faq-item summary::after {
  content: "➕";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #00abe4;
  transition: transform 0.24s;
}

.erep-faq-item[open] summary::after {
  content: "➖";
  color: #1ccfcf;
  transform: translateY(-50%) rotate(180deg);
}

.erep-faq-reponse {
  padding: 0 1.6rem 1.3rem 1.6rem;
  font-size: 1.06rem;
  color: #2a3550;
  line-height: 1.7;
  animation: fadeInFaq 0.35s;
}

@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .erep-faq {
    padding: 32px 0 24px 0;
  }
  .erep-faq-title {
    font-size: 1.28rem;
    margin-bottom: 1.3rem;
  }
  .erep-faq-list {
    padding: 0 0.3rem;
    gap: 0.7rem;
  }
  .erep-faq-item summary {
    font-size: 1.01rem;
    padding: 1rem 1.1rem;
  }
  .erep-faq-reponse {
    font-size: 0.97rem;
    padding: 0 1.1rem 1rem 1.1rem;
  }
}
.erep-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem; /* réduit l’espace entre les questions */
  padding: 0 1.2rem;
}

.erep-faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 171, 228, 0.08);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
  border-left: 6px solid #00abe4; /* bordure accentuée */
  margin-bottom: 0;
}

.erep-faq-item[open] {
  box-shadow: 0 6px 24px rgba(0, 171, 228, 0.13);
  border-left: 6px solid #1ccfcf;
}

.erep-faq-item summary {
  cursor: pointer;
  padding: 1.1rem 3.5rem 1.1rem 1.2rem; /* <-- Ici, 3.5rem à droite */
  font-size: 1.13rem;
  font-weight: 700;
  color: #01257d;
  position: relative;
  outline: none;
  background: transparent;
  border-radius: 12px;
  transition: background 0.14s;
  list-style: none;
  display: block;
  min-height: 48px;
}

.erep-faq-item summary::marker,
.erep-faq-item summary::-webkit-details-marker {
  display: none;
}

.erep-faq-item summary::after {
  content: "➕";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: #00abe4;
  border-radius: 50%;
  background: #e9f1fa;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, transform 0.24s;
  box-shadow: 0 1px 4px rgba(0, 171, 228, 0.06);
}

.erep-faq-item[open] summary::after {
  content: "➖";
  color: #1ccfcf;
  background: #e0fcf7;
  transform: rotate(180deg) scale(1.08);
}

.erep-faq-reponse {
  padding: 0 1.6rem 1.1rem 1.2rem;
  font-size: 1.06rem;
  color: #2a3550;
  line-height: 1.7;
  animation: fadeInFaq 0.35s;
}

@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .erep-faq-list {
    padding: 0 0.3rem;
    gap: 0.4rem;
  }
  .erep-faq-item summary {
    padding-right: 3.5rem; /* même valeur ou plus si besoin */
  }
  .erep-faq-reponse {
    font-size: 0.97rem;
    padding: 0 1.1rem 0.8rem 1rem;
  }
}
.cta-final-modern {
  position: relative;
  padding: 72px 0 64px 0;
  background: linear-gradient(120deg, #e9f1fa 0%, #c2e9fb 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cta-final-modern-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, #00abe4 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, #ff4d00 0%, transparent 70%);
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.cta-final-modern-content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 36px rgba(0, 171, 228, 0.11);
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 2.2rem 2.4rem 2.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final-modern-badge {
  display: inline-block;
  background: #ff4d00;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  border-radius: 18px;
  padding: 0.3em 1.2em;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(255, 77, 0, 0.13);
  text-transform: uppercase;
}

.cta-final-modern-content h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 1.1rem;
  line-height: 1.18;
}
.cta-final-modern-content h2 span {
  color: #00abe4;
  background: linear-gradient(90deg, #00abe4 0%, #1ccfcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-final-modern-content p {
  font-size: 1.13rem;
  color: #2a3550;
  margin-bottom: 2.1rem;
  line-height: 1.6;
}

.cta-final-modern-btn {
  display: inline-block;
  background: #ff4d00;
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  border-radius: 32px;
  padding: 1.1em 2.6em;
  box-shadow: 0 4px 24px rgba(255, 77, 0, 0.11);
  text-decoration: none;
  margin-bottom: 1.2rem;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.04em;
  border: none;
}
.cta-final-modern-btn:hover {
  background: #d13d00;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(255, 77, 0, 0.18);
}

.cta-final-modern-note {
  font-size: 0.98rem;
  color: #00abe4;
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-final-modern {
    padding: 36px 0 28px 0;
  }
  .cta-final-modern-content {
    padding: 1.5rem 0.7rem 1.1rem 0.7rem;
    border-radius: 18px;
    max-width: 98vw;
  }
  .cta-final-modern-content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .cta-final-modern-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .cta-final-modern-btn {
    font-size: 1rem;
    padding: 0.9em 1.4em;
    margin-bottom: 0.8rem;
  }
}
.main-content {
  background: #f7fbff;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #2a3550;
}

/* Section Intro/Mission */
.intro-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 1.5rem 40px 1.5rem;
  text-align: center;
  background: linear-gradient(120deg, #e9f1fa 0%, #fff 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.06);
}
.intro-section h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 1.3rem;
  letter-spacing: -0.01em;
}
.intro-lead {
  font-size: 1.18rem;
  color: #00abe4;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.intro-section p {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

/* Section Engagements/Avantages */
.engagements-section {
  background: #fff;
  padding: 44px 0 36px 0;
}
.engagements-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 950px;
  margin: 0 auto;
}
.engagement-card {
  background: #f7fbff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 171, 228, 0.08);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s;
}
.engagement-card:hover {
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.13);
  transform: translateY(-4px) scale(1.04);
}
.engagement-card img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px #0001;
}
.engagement-card span {
  font-size: 1.06rem;
  color: #01257d;
  font-weight: 700;
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
}

/* Section Notre histoire */
.story-section {
  background: linear-gradient(120deg, #e9f1fa 0%, #fff 100%);
  padding: 64px 0 56px 0;
}
.story-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  max-width: 1050px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 1.5rem;
}
.story-img {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-img img {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.1);
  object-fit: cover;
  background: #fff;
}
.story-text {
  flex: 1 1 380px;
  min-width: 300px;
  max-width: 520px;
}
.story-text h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 1.2rem;
  line-height: 1.13;
}
.story-text p {
  font-size: 1.09rem;
  color: #2a3550;
  margin-bottom: 1.1rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .engagements-cards {
    gap: 1.1rem;
  }
  .engagement-card {
    width: 160px;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .engagement-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 0.7rem;
  }
  .story-container {
    flex-direction: column;
    gap: 1.8rem;
    padding: 0 0.7rem;
  }
  .story-img img {
    max-width: 180px;
  }
}
@media (max-width: 600px) {
  .intro-section {
    padding: 32px 0.5rem 22px 0.5rem;
    border-radius: 0 0 18px 18px;
  }
  .intro-section h1 {
    font-size: 1.18rem;
    margin-bottom: 0.7rem;
  }
  .intro-lead {
    font-size: 1.01rem;
    margin-bottom: 0.7rem;
  }
  .intro-section p {
    font-size: 0.97rem;
    margin-bottom: 0.6rem;
  }
  .engagements-section {
    padding: 20px 0 16px 0;
  }
  .engagements-cards {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .engagement-card {
    width: 100%;
    max-width: 340px;
    padding: 1rem 0.6rem;
  }
  .engagement-card img {
    width: 38px;
    height: 38px;
  }
  .story-section {
    padding: 32px 0 22px 0;
  }
  .story-text h2 {
    font-size: 1.12rem;
    margin-bottom: 0.6rem;
  }
  .story-text p {
    font-size: 0.98rem;
    margin-bottom: 0.6rem;
  }
}
.faq-main {
  background: #f7fbff;
  min-height: 100vh;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #2a3550;
}

.faq-section {
  max-width: 950px;
  margin: 0 auto;
  padding: 64px 1.5rem 56px 1.5rem;
}

.faq-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 2.6rem;
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.08);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
  border-left: 5px solid #00abe4;
}

.faq-item[open] {
  box-shadow: 0 8px 36px rgba(0, 171, 228, 0.13);
  border-left: 5px solid #1ccfcf;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 3.5rem 1.15rem 1.5rem;
  font-size: 1.13rem;
  font-weight: 700;
  color: #01257d;
  position: relative;
  outline: none;
  background: transparent;
  border-radius: 14px;
  transition: background 0.14s;
  list-style: none;
  min-height: 48px;
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "➕";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: #00abe4;
  border-radius: 50%;
  background: #e9f1fa;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, transform 0.24s;
  box-shadow: 0 1px 4px rgba(0, 171, 228, 0.06);
}

.faq-item[open] summary::after {
  content: "➖";
  color: #1ccfcf;
  background: #e0fcf7;
  transform: rotate(180deg) scale(1.08);
}

.faq-answer {
  padding: 0 1.5rem 1.15rem 1.5rem;
  font-size: 1.06rem;
  color: #2a3550;
  line-height: 1.7;
  animation: fadeInFaq 0.35s;
}

@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 32px 0.5rem 22px 0.5rem;
  }
  .faq-title {
    font-size: 1.18rem;
    margin-bottom: 1.1rem;
  }
  .faq-list {
    gap: 0.5rem;
  }
  .faq-item summary {
    font-size: 1.01rem;
    padding: 0.9rem 3.5rem 0.9rem 1rem;
    min-height: 44px;
  }
  .faq-answer {
    font-size: 0.97rem;
    padding: 0 1rem 0.8rem 1rem;
  }
}
.cgu-main {
  background: #f7fbff;
  min-height: 100vh;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #2a3550;
}
.cgu-section {
  max-width: 800px;
  margin: 48px auto 32px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.08);
  padding: 48px 2rem 36px 2rem;
}
.cgu-section h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: -0.01em;
}
.cgu-list {
  counter-reset: cgu-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cgu-list > li {
  margin-bottom: 2.1rem;
  position: relative;
  padding-left: 0.5rem;
}
.cgu-list > li h2 {
  font-size: 1.18rem;
  color: #00abe4;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  position: relative;
}
.cgu-list > li p {
  font-size: 1.07rem;
  line-height: 1.7;
  margin-bottom: 0.2rem;
}
.cgu-list > li a {
  color: #00abe4;
  text-decoration: underline;
  transition: color 0.18s;
  font-weight: 600;
}
.cgu-list > li a:hover {
  color: #1ccfcf;
}
@media (max-width: 600px) {
  .cgu-section {
    padding: 24px 0.7rem 18px 0.7rem;
    border-radius: 12px;
    margin: 22px auto 12px auto;
  }
  .cgu-section h1 {
    font-size: 1.18rem;
    margin-bottom: 1.1rem;
  }
  .cgu-list > li h2 {
    font-size: 1.03rem;
    margin-bottom: 0.4rem;
  }
  .cgu-list > li p {
    font-size: 0.97rem;
    margin-bottom: 0.15rem;
  }
}
.cgv-main {
  background: #f7fbff;
  min-height: 100vh;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #2a3550;
}
.cgv-section {
  max-width: 800px;
  margin: 48px auto 32px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.08);
  padding: 48px 2rem 36px 2rem;
}
.cgv-section h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: -0.01em;
}
.cgv-list {
  counter-reset: cgv-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cgv-list > li {
  margin-bottom: 2.1rem;
  position: relative;
  padding-left: 0.5rem;
}
.cgv-list > li h2 {
  font-size: 1.18rem;
  color: #00abe4;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  position: relative;
}
.cgv-list > li p {
  font-size: 1.07rem;
  line-height: 1.7;
  margin-bottom: 0.2rem;
}
.cgv-list > li a {
  color: #00abe4;
  text-decoration: underline;
  transition: color 0.18s;
  font-weight: 600;
}
.cgv-list > li a:hover {
  color: #1ccfcf;
}
@media (max-width: 600px) {
  .cgv-section {
    padding: 24px 0.7rem 18px 0.7rem;
    border-radius: 12px;
    margin: 22px auto 12px auto;
  }
  .cgv-section h1 {
    font-size: 1.18rem;
    margin-bottom: 1.1rem;
  }
  .cgv-list > li h2 {
    font-size: 1.03rem;
    margin-bottom: 0.4rem;
  }
  .cgv-list > li p {
    font-size: 0.97rem;
    margin-bottom: 0.15rem;
  }
}
.accessibilite-main {
  background: #f7fbff;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: #2a3550;
  padding: 0;
}

.accessibilite-section {
  max-width: 800px;
  margin: 48px auto 32px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.08);
  padding: 48px 2rem 36px 2rem;
}

.accessibilite-section h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.accessibilite-intro {
  background: #e9f1fa;
  border-left: 5px solid #00abe4;
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  font-size: 1.13rem;
  margin-bottom: 2rem;
  color: #01257d;
  font-weight: 600;
}

.accessibilite-section h2 {
  font-size: 1.18rem;
  color: #00abe4;
  font-weight: 800;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}

.accessibilite-section p,
.accessibilite-section ul {
  font-size: 1.07rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.accessibilite-section ul {
  padding-left: 1.3em;
  margin-bottom: 1.1rem;
}
.accessibilite-section ul li {
  margin-bottom: 0.5rem;
}

.accessibilite-section a {
  color: #00abe4;
  text-decoration: underline;
  transition: color 0.18s;
  font-weight: 600;
}
.accessibilite-section a:hover {
  color: #1ccfcf;
}

.accessibilite-update {
  font-size: 0.97rem;
  color: #888;
  margin-top: 2.2rem;
  border-top: 1px solid #e9f1fa;
  padding-top: 1rem;
  text-align: center;
}

@media (max-width: 600px) {
  .accessibilite-section {
    padding: 24px 0.7rem 18px 0.7rem;
    border-radius: 12px;
    margin: 22px auto 12px auto;
  }
  .accessibilite-section h1 {
    font-size: 1.18rem;
    margin-bottom: 1.1rem;
  }
  .accessibilite-intro {
    font-size: 1.01rem;
    padding: 0.8rem 0.7rem;
    margin-bottom: 1.1rem;
  }
  .accessibilite-section h2 {
    font-size: 1.03rem;
    margin-top: 1.1rem;
  }
  .accessibilite-section p,
  .accessibilite-section ul {
    font-size: 0.97rem;
    margin-bottom: 0.7rem;
  }
  .accessibilite-update {
    font-size: 0.91rem;
    margin-top: 1.1rem;
    padding-top: 0.7rem;
  }
}
.mentions-legales-main {
  background: #f7fbff;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: #2a3550;
  padding: 0;
}
.mentions-legales-section {
  max-width: 800px;
  margin: 48px auto 32px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.08);
  padding: 48px 2rem 36px 2rem;
}
.mentions-legales-section h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
}
.mentions-legales-intro {
  background: #e9f1fa;
  border-left: 5px solid #00abe4;
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  font-size: 1.13rem;
  margin-bottom: 2rem;
  color: #01257d;
  font-weight: 600;
}
.mentions-legales-section h2 {
  font-size: 1.18rem;
  color: #00abe4;
  font-weight: 800;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.mentions-legales-section p,
.mentions-legales-section ul {
  font-size: 1.07rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.mentions-legales-section ul {
  padding-left: 1.3em;
  margin-bottom: 1.1rem;
}
.mentions-legales-section ul li {
  margin-bottom: 0.5rem;
}
.mentions-legales-section a {
  color: #00abe4;
  text-decoration: underline;
  transition: color 0.18s;
  font-weight: 600;
}
.mentions-legales-section a:hover {
  color: #1ccfcf;
}
.mentions-legales-update {
  font-size: 0.97rem;
  color: #888;
  margin-top: 2.2rem;
  border-top: 1px solid #e9f1fa;
  padding-top: 1rem;
  text-align: center;
}
@media (max-width: 600px) {
  .mentions-legales-section {
    padding: 24px 0.7rem 18px 0.7rem;
    border-radius: 12px;
    margin: 22px auto 12px auto;
  }
  .mentions-legales-section h1 {
    font-size: 1.18rem;
    margin-bottom: 1.1rem;
  }
  .mentions-legales-intro {
    font-size: 1.01rem;
    padding: 0.8rem 0.7rem;
    margin-bottom: 1.1rem;
  }
  .mentions-legales-section h2 {
    font-size: 1.03rem;
    margin-top: 1.1rem;
  }
  .mentions-legales-section p,
  .mentions-legales-section ul {
    font-size: 0.97rem;
    margin-bottom: 0.7rem;
  }
  .mentions-legales-update {
    font-size: 0.91rem;
    margin-top: 1.1rem;
    padding-top: 0.7rem;
  }
}
.conf-main {
  background: #f7fbff;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: #2a3550;
  padding: 0;
}

.conf-section {
  max-width: 820px;
  margin: 40px auto 60px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 171, 228, 0.1);
  padding: 32px 18px 48px 18px;
}

.conf-title {
  color: #01257d;
  font-size: 2.1em;
  font-weight: 900;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 36px;
  line-height: 1.1;
  word-break: break-word;
  hyphens: auto;
}

.conf-section h2 {
  color: #00abe4;
  font-size: 1.25em;
  text-transform: uppercase;
  margin-top: 36px;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.conf-section p,
.conf-section ul {
  font-size: 1.07rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.conf-section ul {
  margin-left: 1.3em;
  margin-bottom: 1.1rem;
  padding-left: 0.5em;
}
.conf-section ul li {
  margin-bottom: 0.5rem;
}

.conf-section a {
  color: #00abe4;
  text-decoration: underline;
  transition: color 0.18s;
  font-weight: 600;
}
.conf-section a:hover {
  color: #1ccfcf;
}

@media (max-width: 600px) {
  .conf-section {
    padding: 18px 2vw 28px 2vw;
    border-radius: 12px;
    margin: 18px auto 22px auto;
  }
  .conf-title {
    font-size: 1.3em;
    padding: 0 2vw;
    margin-bottom: 22px;
  }
  .conf-section h2 {
    font-size: 1.03em;
    margin-top: 18px;
  }
  .conf-section p,
  .conf-section ul {
    font-size: 0.97rem;
  }
}
.cookies-main {
  background: #f7fbff;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: #2a3550;
  padding: 0;
}

.cookies-section {
  max-width: 820px;
  margin: 40px auto 60px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 171, 228, 0.1);
  padding: 32px 18px 48px 18px;
}

.cookies-title {
  color: #01257d;
  font-size: 2.1em;
  font-weight: 900;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 36px;
  line-height: 1.1;
  word-break: break-word;
  hyphens: auto;
}

.cookies-section h2 {
  color: #00abe4;
  font-size: 1.25em;
  text-transform: uppercase;
  margin-top: 36px;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cookies-section p,
.cookies-section ul {
  font-size: 1.07rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.cookies-section ul {
  margin-left: 1.3em;
  margin-bottom: 1.1rem;
  padding-left: 0.5em;
}
.cookies-section ul li {
  margin-bottom: 0.5rem;
}

.cookies-link {
  color: #00abe4;
  text-decoration: underline;
  transition: color 0.18s;
  font-weight: 600;
}
.cookies-link:hover {
  color: #1ccfcf;
}

.cookies-note {
  font-size: 0.97em;
  color: #666;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  margin-bottom: 1.2rem;
}
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: #f7fbff;
}
.cookies-table th,
.cookies-table td {
  padding: 8px 6px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 1.01em;
}
.cookies-table th {
  background: #e9f1fa;
  color: #01257d;
  font-weight: 700;
}

@media (max-width: 700px) {
  .cookies-section {
    padding: 18px 2vw 28px 2vw;
    border-radius: 12px;
    margin: 18px auto 22px auto;
  }
  .cookies-title {
    font-size: 1.3em;
    margin-bottom: 22px;
  }
  .cookies-section h2 {
    font-size: 1.03em;
    margin-top: 18px;
  }
  .cookies-section p,
  .cookies-section ul {
    font-size: 0.97rem;
  }
  .cookies-table {
    min-width: 500px;
    font-size: 0.97em;
  }
}
.contact-modern-main {
  background: linear-gradient(120deg, #f7fbff 0%, #e9f1fa 100%);
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: #2a3550;
  padding: 0;
}
.contact-modern-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3.5rem;
  max-width: 950px;
  margin: 0 auto;
  padding: 64px 1.5rem 48px 1.5rem;
  flex-wrap: wrap;
}
.contact-modern-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 36px rgba(0, 171, 228, 0.11);
  padding: 2.7rem 2.2rem 2.2rem 2.2rem;
  max-width: 410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-modern-header {
  text-align: center;
  margin-bottom: 2.1rem;
}
.contact-modern-icon {
  margin-bottom: 0.5rem;
}
.contact-modern-header h1 {
  color: #01257d;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.contact-modern-header p {
  color: #00abe4;
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 0;
}
.contact-modern-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-modern-fields {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-modern-field {
  flex: 1 1 130px;
  display: flex;
  flex-direction: column;
}
.contact-modern-field label {
  font-weight: 700;
  color: #01257d;
  margin-bottom: 0.3rem;
  font-size: 1.01rem;
}
.contact-modern-field label span {
  color: #ff4d00;
  font-weight: 900;
}
.contact-modern-field input,
.contact-modern-field textarea {
  border: 1.5px solid #e9f1fa;
  border-radius: 8px;
  padding: 0.7em 1em;
  font-size: 1.07rem;
  background: #f7fbff;
  color: #2a3550;
  transition: border 0.18s;
  resize: none;
}
.contact-modern-field input:focus,
.contact-modern-field textarea:focus {
  border-color: #00abe4;
  outline: none;
}
.contact-modern-consent {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.97rem;
  margin-bottom: 0.2rem;
}
.contact-modern-consent label a {
  color: #00abe4;
  text-decoration: underline;
  font-weight: 600;
}
.contact-modern-consent label a:hover {
  color: #1ccfcf;
}
.contact-modern-btn {
  width: 100%;
  background: linear-gradient(90deg, #00abe4 0%, #1ccfcf 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  border-radius: 32px;
  padding: 1.1em 0;
  border: none;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.11);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.contact-modern-btn:hover {
  background: linear-gradient(90deg, #1ccfcf 0%, #00abe4 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 171, 228, 0.18);
}
.contact-modern-success {
  margin-top: 1em;
  color: #00c48c;
  font-weight: 700;
  text-align: center;
  font-size: 1.07rem;
}
.contact-modern-aside {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 171, 228, 0.1);
  padding: 2.1rem 1.3rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 1.1rem;
}
.contact-modern-infos h2 {
  color: #00abe4;
  font-size: 1.09rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.contact-modern-infos p {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #2a3550;
}
.contact-modern-infos a {
  color: #00abe4;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.18s;
}
.contact-modern-infos a:hover {
  color: #1ccfcf;
}
.contact-modern-socials {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.7rem;
}
.contact-modern-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9f1fa;
  color: #00abe4;
  box-shadow: 0 2px 8px #0001;
  font-size: 1.3rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #e9f1fa;
}
.contact-modern-socials a:hover {
  background: #00abe4;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 171, 228, 0.13);
  transform: scale(1.13);
  border-color: #1ccfcf;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-modern-wrapper {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    padding: 32px 0.7rem 22px 0.7rem;
  }
  .contact-modern-card,
  .contact-modern-aside {
    max-width: 100vw;
  }
  .contact-modern-aside {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .contact-modern-card {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    border-radius: 14px;
  }
  .contact-modern-aside {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    border-radius: 12px;
  }
  .contact-modern-header h1 {
    font-size: 1.18rem;
    margin-bottom: 0.3rem;
  }
}
/****************************
  STYLE POUR PAGE BLOG (GRILLE)
*****************************/

.blog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
  background: #f7fbfe;
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-header h1 {
  font-size: 2.6rem;
  color: #01257d;
  font-weight: 900;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}

.blog-intro {
  font-size: 1.18rem;
  color: #3a4a6a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  justify-items: center;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(1, 37, 125, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.blog-card:hover {
  box-shadow: 0 16px 48px rgba(1, 37, 125, 0.16);
  transform: translateY(-6px) scale(1.02);
}

.blog-card-image-link {
  display: block;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s, filter 0.3s;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.08);
}

.blog-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 22px 22px;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #01257d;
  margin-bottom: 0.7rem;
  line-height: 1.22;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-title a:hover {
  color: #1ccfcf;
}

.blog-card-excerpt {
  color: #3a4a6a;
  font-size: 1.06rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  flex: 1 1 auto;
}

.blog-card-btn {
  display: inline-block;
  background: #00abe4;
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.7px;
  box-shadow: 0 4px 16px rgba(0, 171, 228, 0.12);
  transition: background 0.2s, transform 0.2s;
  margin-top: auto;
  text-align: center;
  text-transform: uppercase;
}
.blog-card-btn:hover {
  background: #0090b7;
  transform: scale(1.04);
}

/****************************
  STYLE POUR ARTICLES DE BLOG
*****************************/

article {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(1, 37, 125, 0.09);
  padding: 40px 32px;
  font-family: "Inter", "Roboto", "Open Sans", Arial, sans-serif;
}

.texte-centree {
  text-align: center;
  margin-bottom: 2.5rem;
}
.texte-centree h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #01257d;
  margin-bottom: 1.3rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.texte-centree p {
  font-size: 1.15rem;
  color: #01257d;
  line-height: 1.7;
}

#sommaire,
nav[aria-label="Sommaire"],
nav#sommaire {
  background: #e9f1fa;
  border-left: 6px solid #1ccfcf;
  padding: 28px 24px 18px 24px;
  margin: 36px 0 36px 0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(1, 37, 125, 0.04);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#sommaire h2,
nav[aria-label="Sommaire"] h2 {
  color: #1ccfcf;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
#sommaire ul,
nav[aria-label="Sommaire"] ul {
  list-style: disc inside;
  padding-left: 0;
  font-size: 1.13rem;
}
#sommaire li,
nav[aria-label="Sommaire"] li {
  margin-bottom: 0.5rem;
}
#sommaire li a,
nav[aria-label="Sommaire"] li a {
  color: #01257d;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
#sommaire li a:hover,
nav[aria-label="Sommaire"] li a:hover {
  color: #00abe4;
}

.article-img,
.img-centree {
  display: block;
  width: 100%;
  max-width: 860px;
  height: 420px;
  object-fit: cover;
  margin: 36px auto 42px auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(1, 37, 125, 0.13);
  transition: transform 0.3s;
}
.article-img:hover,
.img-centree:hover {
  transform: scale(1.025);
}

section {
  margin-bottom: 42px;
}
section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #01257d;
  margin-bottom: 1.1rem;
  letter-spacing: -0.5px;
}
section h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: #01257d;
  margin-bottom: 0.7rem;
}
section p,
section ul,
section ol {
  font-size: 1.13rem;
  color: #01257d;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}
section ul,
section ol {
  margin-left: 1.6rem;
}
section ul li,
section ol li {
  margin-bottom: 0.5rem;
}

.faq-container {
  margin-top: 2.2rem;
}
.faq-container details {
  background: #f7fbfe;
  border: 1.5px solid #dbeaf7;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  padding: 1.2rem;
  transition: box-shadow 0.2s;
}
.faq-container details[open] {
  box-shadow: 0 2px 16px rgba(1, 37, 125, 0.09);
}
.faq-container summary {
  font-weight: 700;
  color: #01257d;
  cursor: pointer;
  font-size: 1.13rem;
  margin-bottom: 0.5rem;
}
.faq-container a {
  color: #00abe4;
  text-decoration: underline;
  font-weight: 600;
}

.cta-contact,
.article-cta-premium {
  background: #ffe082;
  padding: 32px 24px;
  border-radius: 14px;
  text-align: center;
  margin: 40px auto;
  max-width: 650px;
  box-shadow: 0 2px 16px rgba(1, 37, 125, 0.09);
}
.cta-contact h3,
.article-cta-premium h3 {
  color: #01257d;
  margin-bottom: 1.1rem;
  font-size: 1.25rem;
  font-weight: 800;
}
.cta-btn {
  display: inline-block;
  background: #1ccfcf;
  color: #fff;
  font-weight: bold;
  padding: 16px 38px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.08rem;
  margin-top: 18px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(28, 207, 207, 0.13);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.cta-btn:hover {
  background: #0090b7;
  transform: scale(1.04);
}

/* Responsive design pour blog et articles */
@media (max-width: 1000px) {
  article {
    padding: 24px 6vw;
  }
  .article-img,
  .img-centree {
    height: 220px;
  }
}
@media (max-width: 800px) {
  .blog-main {
    padding: 28px 4vw;
  }
  .blog-header h1 {
    font-size: 1.6rem;
  }
  .blog-card-img {
    height: 150px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
  }
  .blog-card {
    max-width: 98vw;
    margin: 0 auto 32px auto;
  }
}
.blog-hero-overlay {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 38px auto;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(1, 37, 125, 0.09);
  background: #e9f1fa;
}

.blog-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) contrast(1.03);
}

.hero-blog {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px 20px;
  margin-bottom: 48px;
  text-align: center;
  background: linear-gradient(
      120deg,
      rgba(60, 60, 60, 0.5) 60%,
      rgba(90, 90, 90, 0.35) 100%
    ),
    url("../images/une-dame-posant-avec-l-icone-de-la-barre-de-navigation-en-ligne-sur-un-fond-jaune (1).webp")
      center/cover no-repeat;
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 14px 48px rgba(1, 37, 125, 0.12);
  overflow: hidden;
}
.hero-blog::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 140px;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}
.hero-blog h1 {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 0 4px 18px rgba(26, 35, 126, 0.12);
  position: relative;
  z-index: 2;
}
.hero-blog p {
  color: #e0f7fa;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 0 auto;
  opacity: 0.98;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(1, 37, 125, 0.08);
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .hero-blog {
    padding: 45px 10px 30px 10px;
    min-height: 220px;
  }
  .hero-blog h1 {
    font-size: 1.4rem;
  }
  .hero-blog p {
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  article {
    padding: 12px 2vw;
  }
  .texte-centree h1 {
    font-size: 1.3rem;
  }
  section h2 {
    font-size: 1.15rem;
  }
  .article-img,
  .img-centree {
    height: 140px;
  }
  #sommaire,
  .cta-contact,
  .article-cta-premium {
    padding: 12px 2vw;
  }
}
@media (max-width: 500px) {
  .blog-card-content {
    padding: 16px 8px 12px 8px;
  }
  .blog-header h1 {
    font-size: 1.1rem;
  }
  .blog-intro {
    font-size: 1rem;
  }
  .blog-card {
    max-width: 99vw;
  }
}
.article-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 48px 0 0 0;
}
.nav-link {
  display: inline-block;
  background: #e9f1fa;
  color: #01257d;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(1, 37, 125, 0.07);
}
.nav-link:hover {
  background: #1ccfcf;
  color: #fff;
}
.all-articles {
  background: #00abe4;
  color: #fff;
}
.all-articles:hover {
  background: #0090b7;
  color: #fff;
}

.hero-service p {
  color: #e0f7fa; /* bleu très clair, très lisible sur fond bleu foncé */
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
  opacity: 0.98;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(1, 37, 125, 0.08);
}
@media (max-width: 700px) {
  .hero-service p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
}
/* === Variables pour la personnalisation (si tu veux les réutiliser) === */
:root {
  --sitemap-bg: #f9fbfc;
  --sitemap-title: #005a87;
  --sitemap-link: #007acc;
  --sitemap-link-hover: #004a6e;
  --sitemap-section: #fff;
  --sitemap-border: #e0e6ed;
  --sitemap-text: #222;
  --sitemap-list-indent: 1.5em;
}

/* === Styles spécifiques au sitemap === */
.sitemap-main {
  background: var(--sitemap-bg);
  max-width: 900px;
  margin: 32px auto 40px auto;
  padding: 32px 20px 40px 20px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  font-family: "Segoe UI", "Arial", sans-serif;
  color: var(--sitemap-text);
}

.sitemap-main h1 {
  color: var(--sitemap-title);
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -1px;
  text-align: left;
}

.sitemap-main ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sitemap-main ul > li {
  margin-bottom: 18px;
  font-size: 1.12em;
  position: relative;
}

.sitemap-main ul > li > a,
.sitemap-main ul > li > span {
  color: var(--sitemap-link);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.sitemap-main ul > li > a:hover,
.sitemap-main ul > li > a:focus {
  color: var(--sitemap-link-hover);
  text-decoration: underline;
}

.sitemap-main ul > li > span {
  color: var(--sitemap-title);
  font-weight: 800;
  cursor: default;
}

.sitemap-main ul ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: var(--sitemap-list-indent);
  border-left: 2px solid var(--sitemap-border);
  background: var(--sitemap-section);
  border-radius: 8px;
}

.sitemap-main ul ul li {
  font-size: 1em;
  margin-bottom: 8px;
  padding-left: 10px;
}

.sitemap-main ul ul li a {
  color: var(--sitemap-link);
  font-weight: 500;
}

.sitemap-main ul ul li a:hover,
.sitemap-main ul ul li a:focus {
  color: var(--sitemap-link-hover);
  text-decoration: underline;
}

/* Responsive pour mobile */
@media (max-width: 600px) {
  .sitemap-main {
    padding: 12px 4vw 24px 4vw;
    margin: 12px auto 20px auto;
    border-radius: 10px;
  }
  .sitemap-main h1 {
    font-size: 1.3em;
    margin-bottom: 14px;
    text-align: left;
  }
  .sitemap-main ul ul {
    padding-left: 0.8em;
  }
}
#tarteaucitronRoot {
  --tc-main-bg: #222; /* Couleur de fond principale */
  --tc-main-color: #fff; /* Couleur du texte principal */
  --tc-btn-bg: #00abe4; /* Couleur des boutons */
  --tc-btn-color: #fff; /* Couleur du texte des boutons */
  --tc-btn-hover-bg: #007acc; /* Couleur bouton au survol */
  --tc-link-color: #00abe4; /* Couleur des liens */
}
