body {
  font-family: "Varela Round", sans-serif;
  color: #1b3b3f;
  margin: 0;
  background-color: #fff;
}

header {
  text-align: center;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 30px;
  gap: 200px;
  padding-top: 0;
}

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

.logo {
  max-width: 35%;
}

.titre {
  max-width: 40%;
}

.titre h1 {
  font-size: 38px;
  color: #4cb8bf;
  margin: 0;
  letter-spacing: 1px;
  font-weight: 400;
}

.titre h2 {
  color: #4cb8bf;
  font-weight: normal;
  margin: 5px 0 0 0;
  font-size: 1.4em;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;

  box-shadow: 0 -12px 20px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.08);
}

nav li {
  margin: 0;
}

nav a {
  display: block;
  font-family: "Lato", sans-serif;
  padding: 15px 25px;
  text-decoration: none;
  color: #1b3b3f;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
  background-color: #87be7d;
  color: white;
}

nav li.active > a {
  background-color: #87be7d;
  color: white;
}

.menu-toggle {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown .arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  list-style: none;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  z-index: 100;

  min-width: 100%;
  width: max-content;
  box-sizing: border-box;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #1b3b3f;
  font-family: "Lato", sans-serif;
  transition: background-color 0.3s ease;
  text-align: left;
}

.submenu li a:hover {
  background-color: #9dd5a2;
  color: #fff;
}

.dropdown:hover .submenu {
  display: block;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.coordonnees {
  font-family: "Lato", sans-serif;
  background-color: #104858;
  color: #fff;
  text-align: center;
  padding: 20px 20px;
}

.coordonnees h2 {
  font-size: 1.8em;
  margin-bottom: 40px;
}

.coordonnees-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.coord-item {
  text-align: center;
  font-size: 1em;
  line-height: 1.4em;
  margin-bottom: 20px;
}

.coord-item .adresse,
.coord-item .telephone {
  margin: 4px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

li.adresse {
  display: flex;
  align-items: flex-start; /* pour aligner le haut du texte avec l’icône */
  gap: 0.5em; /* petit espace entre l’icône et le texte */
  margin-left: 0; /* s'assure qu'il n'y a pas de retrait inutile */
  padding-left: 0; /* idem */
  text-align: left; /* force l’alignement à gauche */
}

li.adresse .icon {
  flex-shrink: 0; /* empêche l’icône de se déformer */
  margin-top: 0.25em; /* légère compensation visuelle */
  /* color: #444; */
}

li.adresse a {
  color: inherit;
  text-decoration: none;
  display: block;
  line-height: 1.3;
}

li.adresse a:hover {
  text-decoration: underline;
}

.telephone a {
  color: inherit;
  text-decoration: underline;
}

.telephone a:hover {
  text-decoration: underline;
  color: #87be7d;
}

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

.adresse a:hover {
  text-decoration: underline;
  color: #87be7d;
}

.coord-item .icon {
  color: #4ab7c4;
  position: relative;
  margin: 0;
  top: 5px;
}

.footer-note {
  font-family: "Lato", sans-serif;
  font-size: 0.9em;
  margin-top: 30px;
}

.liens-footer {
  margin-top: 10px;
}

.liens-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9em;
}

.liens-footer a:hover {
  text-decoration: underline;
}

#btn-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #87be7d;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  transition: all 0.3s ease;
  z-index: 999;
}

#btn-top:hover {
  background-color: #9dd8a2;
  transform: translateY(-3px);
}

.bulle-flottante,
.bulle-flottante2 {
  position: fixed;
  left: 0%;
  width: 900px;
  height: 900px;
  background: url("images/bulle-bgrm.png") no-repeat center/contain;
  opacity: 0;
  pointer-events: none;
  transform: translate(-5%, -10%);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.bulle-flottante2 {
  transform: translate(0%, -40%);
}

.bulle-visible {
  opacity: 0.25;
  z-index: 0;
}

.intro {
  text-align: center;
  margin: 80px auto;
  margin-bottom: 50px;
  max-width: 700px;
}
.btn-acceuil-rdv {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
  position: relative;
  z-index: 100;
  width: 60%;
  margin: 0 auto; /* ✅ centre horizontalement le conteneur */
}

.btn-acceuil-rdv a {
  background-color: #8abf90;
  color: #fff;
  border-radius: 30px;
  padding: 14px 32px;
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  text-decoration: none;
  font-size: 1.4em;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-acceuil-rdv a:hover {
  background-color: #7fb685;
  transform: translateY(-2px); /* plus chic que scale */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.question {
  color: #47b4be;
  font-size: 1.3em;
}

.reponse {
  color: #083c4a;
  font-weight: 700;
  font-size: 1.2em;
}

.mots-image {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 60%;
  max-height: 350px;
  object-fit: contain;
}

.texte-apres-image {
  text-align: center;
  margin: 20px auto 60px auto;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.phrase-ecoute {
  font-style: italic;
  color: #083c4a;
  font-size: 1.5em;
  margin: 20px 0;
  font-family: "Lato", sans-serif;
}

.phrase-final {
  color: #8abf90;
  font-size: 1.8em;
  line-height: 1.5em;
  font-family: "Varela Round", sans-serif;
}

.accompagnement {
  background-color: #f7f6f2;
  text-align: center;
  padding: 50px 20px;
}

.accompagnement h2 {
  color: #4cb8bf;
  font-family: "Varela Round", sans-serif;
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.bulle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.bulle {
  background-color: #8abf90;
  border-radius: 20px;
  padding: 40px 20px 25px 20px;
  color: #104858;
  position: relative;
  width: 260px;
  flex: 1 1 250px;
  max-width: 280px;
  box-sizing: border-box;
  margin-top: 70px;
  text-align: center;
}

.rond {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  top: -55px;
  margin-bottom: -30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.bulle h3 {
  color: #104858;
  font-family: "Lato", sans-serif;
  margin: 15px 0 10px 0;
  font-size: 1.6em;
  font-weight: 700;
}

.bulle p,
.bulle ul {
  list-style: none;
  padding: 0;
  margin: 10px auto 0 auto;
  display: inline-block;
  text-align: left;
  font-size: 1.1em;
  text-align: center;
  font-weight: 300;
}

.bulle ul li {
  font-family: "Lato", sans-serif;
  font-size: 1em;
  line-height: 1.4em;
  color: #104858;
  display: flex; /* Aligne le point et le texte */
  align-items: center;
}

.bulle ul li::before {
  content: "•";
  margin-right: 0.5em;
  color: #104858;
}

.bulle ul li strong {
  margin-right: 5px;
}
.citation2,
.citation {
  text-align: center;
  background-color: #fff;
  padding: 60px 20px 40px 20px;
  position: relative;
}

.citation2 {
  padding: 0;
}

.citation2 .bulle-icone,
.citation .bulle-icone {
  width: 85px;
  margin-bottom: 0px;
}

.citation2 h1,
.citation p {
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.4em;
  color: #0a3b43;
  line-height: 1.6em;
}

.citation2 p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #0a3b43;
  line-height: 1.4em;
}

.rendezvous {
  background-color: #4cb8bf;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.rendezvous h2 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.9em;
  font-weight: 400;
  margin-bottom: 10px;
}

.rendezvous .sous-titre {
  font-family: "Lato", sans-serif;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.boutons-rdv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
  position: relative;
  z-index: 100;
  width: 60%;
  margin: 0 auto; /* ✅ centre horizontalement le conteneur */
}

.boutons-rdv a,
.boutons-rdv button {
  background-color: #8abf90;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 35px;
  font-family: "Lato", sans-serif;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* .boutons-rdv a:hover,
.boutons-rdv button:hover {
  background-color: #87be7d;
  transform: translateY(-3px);
} */

.boutons-rdv a:hover,
.boutons-rdv button:hover {
  background-color: white;
  color: #8abf90;
  transform: translateY(-3px);
}

.faq {
  background-color: #87be7d;
  text-align: center;
  padding: 60px 20px 100px;
}

.faq h2 {
  font-family: "Tenor Sans", sans-serif;
  color: #104858;
  margin-bottom: 30px;
  font-size: 1.8em;
  position: relative;
  z-index: 2;
}

.faq-container2,
.faq-container {
  background-color: #104858;
  border-radius: 50px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 50px;
  text-align: left;
  color: white;
  position: relative;
  z-index: 100;
}

.faq-container2 {
  font-size: 14px;
  border-radius: 30px;
  padding: 10px 20px 10px 20px;
  width: 110%;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 1em;
  padding: 15px 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 30px 15px 15px;
}

.faq-question .arrow {
  position: absolute;
  right: 10px;
  transition: transform 0.3s ease;
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}

.faq-question:hover {
  background-color: #4ab7c4;
  border-radius: 20px;
}

.faq-item:last-child .faq-question {
  border-bottom: none;
}

.faq-item:last-child .faq-question {
  border-bottom: none;
}

/* 💡 Quand on survole une question, on supprime la bordure de celle juste avant */
.faq-item:has(+ .faq-item:hover) .faq-question {
  border-bottom-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #f7f6f2;
  color: #104858;
  padding: 0 20px;
  border-radius: 0 0 10px 10px;
  margin-top: 5px;
  line-height: 1.6em;
  font-size: 0.95em;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: all 0.4s ease; /* animation douce */
}

.faq-item.active .faq-answer {
  max-height: 500px; /* assez grand pour contenir le texte */
  opacity: 1;
  padding: 20px;
}

/* 
.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
} */

.faq-item.active .faq-question {
  background-color: #87be7d;
  color: #ffffff;
  border-radius: 10px;
  padding: 15px 15px;
  border-radius: 10px 10px 0px 0px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.dialogue {
  position: relative;
  background-image: url("images/dialogue-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #f7f6f2;
  background-size: cover;
  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.bulle-dialogue {
  position: relative;
  max-width: 20%;
  height: auto;
  z-index: 2;
}

.tete-infos,
.medias-tete,
.pres-accompagnement,
.pres-cabinet {
  text-align: center;
  padding: 0 20px 20px;
  color: #083a46;
  font-family: "Lato", "Open Sans", sans-serif;
}

.tete-infos {
  height: 370px;
}
.medias-tete {
  height: 250px;
  position: relative;
  z-index: 2;
}

.tete-infos .pres-hero,
.medias-tete .pres-hero,
.pres-accompagnement .pres-hero,
.pres-cabinet .pres-hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 160px 20px 140px;
  margin: 0 -20px 80px;
  background-color: #f7f6f2;
  background-attachment: fixed;
  overflow: visible;
}

.tete-infos .pres-hero {
  background-image: url("images/foret.jpeg");
  margin: 0 -20px 50px;
}

.pres-accompagnement .pres-hero {
  background-image: url("images/ecoute.jpeg");
  margin: 0 -20px 50px;
}

.pres-cabinet .pres-hero {
  background-image: url("images/arbre.jpeg");
  margin: 0 -20px 50px;
}

.medias-tete .pres-hero {
  background-image: url("images/livres.jpeg");
  margin: 0 -20px 50px;
  height: 0;
}

.tete-infos .bulle-titre,
.medias-tete .bulle-titre,
.pres-accompagnement .bulle-titre,
.pres-cabinet .bulle-titre {
  display: inline-block;
  background-color: white;
  border-radius: 40px 40px 0 40px;
  padding: 5px 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: min(720px, 100%);
  position: relative;
  z-index: 2;
  font-size: 1.2em;
}

.tete-infos {
  padding-bottom: 0;
}

.pres-cabinet .intro {
  max-width: 800px;
  margin: 0 auto 70px auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #083a46;
}

.pres-cabinet .intro p {
  margin-bottom: 25px;
}

.pres-cabinet .forces {
  color: #67c3d1;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin-top: 40px;
}

.valeurcompetences,
.travail-equipe {
  background-color: #f8f8f8;
  padding: 10px 40px;
  border-radius: 25px;
  margin: 100px 10%;
  max-width: 80%;
  position: relative;
  overflow: visible;
}

.valeurcompetences {
  margin-bottom: 50px;
}

.valeurcompetences .conteneur,
.travail-equipe .conteneur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
}

.valeurcompetences .conteneur {
  padding-bottom: 20px;
}

.valeurcompetences .texte,
.travail-equipe .texte {
  flex: 1;
  text-align: left;
  color: #083a46;
  font-family: "Lato", "Open Sans", sans-serif;
  z-index: 2;
}

.valeurcompetences .texte h2,
.travail-equipe .texte h2 {
  color: #67c3d1;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.valeurcompetences .texte ul,
.travail-equipe .texte ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.valeurcompetences .texte ul li,
.travail-equipe .texte ul li {
  position: relative;
  padding-left: 18px;

  line-height: 1.4;
}

.valeurcompetences .texte ul li::before,
.travail-equipe .texte ul li::before {
  content: "•";
  color: #55c59d;
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 0;
}

.valeurcompetences .image,
.travail-equipe .image {
  flex: 1;
  position: relative;
}

.valeurcompetences .image img {
  width: 150%;
  height: auto;
  border-radius: 20px;
  position: relative;
  top: -85px;
  right: 20%;
  z-index: 1;
  max-width: 550px;
}

.travail-equipe .image img {
  width: 118%;
  height: auto;
  border-radius: 20px;
  position: relative;
  top: -55px;
  right: -3%;
  z-index: 1;
  max-width: 500px;
}

.notre-expertise {
  background-color: #5fbac4;
  padding-top: 20px;
  padding-bottom: 35px;
  font-family: "Lato", "Open Sans", sans-serif;
  color: #083a46;
}

.notre-expertise .bloc-haut {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: 40px 10%;
  border-radius: 10px;
}

.notre-expertise .image img {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 30px 30px 30px 0px;
  top: -30px;
  right: -20px;
}

.notre-expertise .texte {
  flex: 1;
  text-align: left;
  font-weight: 300;
}

.notre-expertise .texte h2 {
  color: #67c3d1;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.notre-expertise .texte p {
  line-height: 1.5;
  margin-bottom: 15px;
}

.notre-expertise .texte ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notre-expertise .texte ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.notre-expertise .texte ul li::before {
  content: "•";
  color: #55c59d;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0;
}

.notre-expertise .bloc-bas {
  position: relative;
  z-index: 2;
  background-color: #083a46;
  color: white;
  border-radius: 0px 40px 40px 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 60px;
}

.notre-expertise .bloc-bas p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.notre-expertise .bloc-bas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notre-expertise .bloc-bas ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.notre-expertise .bloc-bas ul li::before {
  content: "•";
  color: #67c3d1;
  position: absolute;
  left: 0;
}

.notre-engagement {
  background-color: #5fbac4;
  color: white;
  text-align: center;
  font-family: "Lato", "Open Sans", sans-serif;
  padding: 50px 15%;
}

.notre-engagement h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.notre-engagement p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  font-style: italic;
}

.dialoguebotte {
  position: relative;
  background-image: url("images/botte.jpeg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-color: #f7f6f2;

  /* Effet fixe sur desktop */
  background-attachment: fixed;

  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.page-familles {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 500;
  color: #183642;
  background-color: #fff;
  line-height: 1.2;
}

.page-familles section.bloc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 10%;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.texte-droite {
  background-color: #f7f7f7;
}

.page-familles .texte {
  flex: 1;
}

.page-familles .image {
  flex: 1;
}

.page-familles .image img {
  width: 100%;
  object-fit: cover;
}

.page-familles h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.page-familles p {
  text-align: left;
  font-size: 16px;
  margin-bottom: 10px;
}

.page-familles p.intro {
  margin-top: 0;
  color: #41b6c4;
  font-style: italic;
}

.page-familles .texte-gauche .texte {
  order: 1;
}
.page-familles .texte-gauche .image {
  order: 2;
}

.page-familles .texte-gauche .image img {
  border-radius: 40px 40px 40px 0px;
}

.page-familles .texte-droite .image {
  order: 1;
}
.page-familles .texte-droite .texte {
  order: 2;
}

.page-familles .texte-droite .image img {
  border-radius: 40px 40px 0px 40px;
}

.page-familles .infos-entretien {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  padding: 60px 5%;
  background-color: #f6f7f5;
  flex-wrap: wrap;
}

.page-familles .infos-entretien .info-card {
  background-color: #8cc48a;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 100px;
  max-width: 360px;
  min-width: 100px;
  padding: 40px 30px;
  color: #0f3d42;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.page-familles .infos-entretien .info-icon {
  background-color: #f6f7f5;
  border-radius: 50%;
  border: 3px solid #0f3d42;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.page-familles .infos-entretien .info-icon img {
  width: 35px;
  height: 35px;
}

.page-familles .infos-entretien h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f3d42;
  line-height: 1.4;
}

.page-familles .infos-entretien p {
  font-size: 0.95em;
  font-weight: 300;
  color: #0f3d42;
  line-height: 1.5;
  margin: 0;
}

.page-familles .infos-entretien .svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.page-familles .infos-entretien svg {
  width: 100%;
  height: auto;
}

.pourquoi-mots-croises {
  background-color: #f8f8f8;
  padding: 10px 40px;
  border-radius: 25px;
  margin: 10% 5%;
  position: relative;
  overflow: visible;
  font-size: 0.8em;
}

.pourquoi-mots-croises {
  margin-bottom: 50px;
}

.pourquoi-mots-croises .conteneur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
}

.pourquoi-mots-croises .conteneur {
  padding-bottom: 20px;
}

.pourquoi-mots-croises .texte {
  flex: 1;
  text-align: left;
  color: #083a46;
  font-family: "Lato", "Open Sans", sans-serif;
  z-index: 2;
  font-size: 16px;
}

.pourquoi-mots-croises .texte h2 {
  color: #67c3d1;
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 18px;
}

.pourquoi-mots-croises .texte ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pourquoi-mots-croises .image {
  flex: 1;
  position: relative;
}

.pourquoi-mots-croises .image img {
  width: 120%;
  height: auto;
  border-radius: 20px;
  position: relative;
  top: -40px;
  z-index: 1;
  max-width: 550px;
}

.dialoguepont {
  position: relative;
  background-image: url("images/pont.jpeg");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #f7f6f2;
  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.list-prat {
  font-family: "Lato", sans-serif;
  background: #f6f7f5;
  padding: 60px 0;
  color: #104858;
}

.list-prat .titre-page {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #104858;
}

.list-prat .cabinet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.list-prat .cabinet-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 15px 20px;
  max-width: 370px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
}
.list-prat .cabinet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.list-prat .cabinet-card .open-contact {
  display: inline-block;
  margin-top: 1.2em;
  background-color: #8cc48a; /* doux et intégré */
  color: #104858;
  border: none;
  padding: 0.6em 1.4em;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(2px); /* effet léger de transparence */
}

.list-prat .cabinet-card .open-contact:hover {
  background-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
}

.list-prat .pin-badge {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  background: #8cc48a;
  border-radius: 50%;
  border: 6px solid #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  margin-top: 15px;
}

.list-prat .pin-badge svg {
  width: 30px;
  height: 30px;
}

.list-prat .praticiens {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.list-prat .praticiens {
  list-style: none;
  padding: 0;
  margin: 15px auto 10px;
  text-align: left;
  display: inline-block;
}

.list-prat .praticiens li {
  display: block;
  color: #104858;
  font-weight: 400;
  margin: 4px 0;
  line-height: 1.4;
  position: relative;
  padding-left: 16px;
}

.list-prat .praticiens li::before {
  content: "›";
  color: #8cc48a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.praticiens-card .prise-rdv,
.praticiens-card .open-contact {
  display: inline-block;
  margin-top: 1.2em;
  background-color: rgba(255, 255, 255, 0.4); /* doux et intégré */
  color: #104858;
  border: none;
  padding: 0.6em 1.4em;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(2px); /* effet léger de transparence */
}
.praticiens-card .prise-rdv:hover,
.praticiens-card .open-contact:hover {
  background-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
}

.list-prat .infos {
  margin-top: 15px;
  line-height: 1.4;
}

.list-prat .icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
  fill: #8cc48a;
}

.list-prat .ville-ligne {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #104858;
}

.list-prat .ville {
  margin: 18px 0 8px;
}

.list-prat .adresse,
.list-prat .tel a {
  gap: 6px;
  font-size: 0.93em;
  line-height: 1.3;
}

.list-prat .tel a {
  color: #64646c;
  text-decoration: none;
  transition: color 0.2s ease;
}
.list-prat .tel a:hover {
  text-decoration: underline;
  color: #0d3742;
}

.list-prat .horaires {
  margin-top: 12px;
  gap: 2px;
  line-height: 1.3;
}

.horaires .icon {
  margin-right: 6px;
}

.horaire-ligne {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-prat .map {
  margin-top: 15px;
}

.list-prat .map iframe {
  width: 90%;
  height: 200px;
  border: 0;
}

/* LISTE PRATICIENS */

.section-praticiens {
  text-align: center;
  padding: 30px 20px;
  background-color: #f7f7f7;
}

.section-praticiens:nth-of-type(even) {
  background-color: #49b7c4;
  color: white;
}

.section-praticiens h2 {
  color: #8cc48a;
  font-size: 1.8rem;
}

.section-praticiens:nth-of-type(even) h2 {
  color: #fff;
}

.praticiens-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.praticiens-card {
  background-color: #8cc48a;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  max-width: 260px;
  width: 100%;
  text-align: center;
  padding: 100px 20px 30px;
  position: relative;
  color: #1b535b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 55px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.praticiens-card .nom {
  font-size: 1.3rem;
}

.praticiens-card:nth-child(even) {
  background-color: #52b1ba;
}

.praticiens-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.section-praticiens:nth-of-type(even) .praticiens-card {
  background-color: #8cc48a;
  color: #104858;
}

.section-praticiens:nth-of-type(even) .praticiens-card:nth-child(even) {
  background-color: #a1d4a0;
}

.praticiens-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nom {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 8px;
}

.telephone {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.telephone a {
  color: #fff;
  text-decoration: none;
}
.telephone a:hover {
  text-decoration: underline;
}

.praticiens-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  text-align: left;
  color: #f4f4f4;
  font-size: 0.9em;
}

.praticiens-card ul li {
  margin: 5px 0;
  line-height: 1.4;
}

.praticiens-card a {
  color: #fff;
  text-decoration: underline;
  word-break: break-word;
}
.praticiens-card a:hover {
  opacity: 0.85;
  color: #fff;
}

.praticiens-card .adresse a {
  text-decoration: none;
  color: inherit;
}

.praticiens-card .adresse a:hover {
  text-decoration: underline;
}

.bibliographie {
  font-size: 0.85em;
  margin-top: 15px;
  text-align: left;
  color: #f9f9f9;
}

.bibliographie strong {
  display: block;
  margin-bottom: 5px;
}

.reseaux {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.reseaux a {
  background-color: #fff;
  color: #104858;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.reseaux a:hover {
  background-color: #eee;
}

.couplefleur {
  position: relative;
  background-image: url("images/couple-fleur.jpeg");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #f7f6f2;

  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* //nos livres */

.livres-section {
  text-align: center;
  padding: 60px 20px;
  background: #f6f7f5;
}

.livres-section h2 {
  font-family: "Lato", sans-serif;
  color: #7fbf7a;
  font-size: 2rem;
  margin: 0 0 8px;
}

.livres-section .sous-titre {
  color: #1b535b;
  opacity: 0.9;
  margin-bottom: 32px;
  font-size: 1rem;
}

.livres-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.livre-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 300px;
  max-width: 300px;
  box-sizing: border-box;
  position: relative;
  background: #8cc48a;
  border-radius: 24px;
  padding: 90px 26px 26px;
  color: #133d44;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 90px;
}

.livre-card:nth-child(even) {
  background: #52b1ba;
  color: #0e2f35;
}

.livre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.livre-cover {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  border: 6px solid #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.livre-titre {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 6px 0 10px;
  color: #113b43;
  word-wrap: break-word;
  text-align: center;
}

.livre-card:nth-child(even) .livre-titre {
  color: #0e2f35;
}

.livre-auteurs {
  margin: 0 0 10px;
  font-weight: 400;
  color: #e6fbff;
  opacity: 0.95;
}

.livre-card:nth-child(odd) .livre-auteurs {
  color: #e8ffe8;
}

.livre-desc {
  color: #f3fbfc;
  opacity: 0.95;
  line-height: 1.6;
  margin: 0 0 18px;
  text-align: center;
  flex-grow: 1;
}

.livre-actions {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.btn-livre {
  display: inline-block;
  background: #0d3742;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-livre:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* //interview
 */
.media-section {
  text-align: center;
  padding: 50px 20px;
  background: #f6f7f5;
}

.media-card {
  max-width: 70%;
  margin: 60px auto 40px;
  background: #8cc48a;
  border-radius: 26px;
  padding: 70px 24px 40px;
  color: #0e3940;
  position: relative;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.media-card .media-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.media-card h2 {
  margin: 0 0 16px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1b535b;
}

.media-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.media-pill {
  display: inline-block;
  background: #0d3742;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 400;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, filter 0.15s ease;
  max-width: 95%;
  line-height: 1.4;
  text-align: center;
  font-size: 0.8em;
}
.media-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.media-list li:nth-child(even) .media-pill {
  background: #164d58;
}

/* LISTE ARTICLES */

.articles-section {
  background: #49b7c4;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 5%;
}

.articles-section h2 {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
}

.articles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  background: #f6f7f5;
  border-radius: 30px;
  padding: 40px;
  color: #1b535b;
}

.article-featured {
  flex: 1 1 480px;
  max-width: 480px;
  text-align: left;
  position: relative;
}

.article-featured h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.article-featured img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.article-featured img.fade {
  opacity: 0.1;
  transform: scale(0.98);
}

.article-featured a {
  display: inline-block;
  background: #8cc48a;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.2s ease;
}
.article-featured a:hover {
  background: #74b275;
}

.article-item::before {
  content: none;
}

.article-item img {
  display: none;
}

.article-list {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}

.article-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.article-item a {
  display: inline-block;
  background: #8cc48a;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.2s ease;
}

.article-item a:hover {
  background: #74b275;
}

.article-item .article-pres {
  display: none;
}

.sitemap {
  max-width: 800px;
  margin: 40px 10%;
  padding: 0 20px;
  font-family: "Lato", sans-serif;
  color: #1b3b3f;
}

.sitemap h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.sitemap-list {
  list-style: none;
  padding: 0;
}

.sitemap-list > li {
  margin-bottom: 15px;
}

.sitemap-list a {
  color: #1b3b3f;
  text-decoration: none;
}

.sitemap-list a:hover {
  color: #4cb8bf;
}

.sitemap-list ul {
  list-style: none;
  margin: 5px 0 10px 20px;
  padding-left: 10px;
  border-left: 2px solid #9dd5a2;
}

.mentions-legales {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Lato", sans-serif;
  color: #1b3b3f;
  line-height: 1.6;
}

.mentions-legales h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.mentions-legales h2 {
  font-size: 1.3rem;
  margin-top: 25px;
  color: #4cb8bf;
}

.mentions-legales a {
  color: #1b3b3f;
  text-decoration: underline;
}

.mentions-legales a:hover {
  color: #4cb8bf;
}

.region-infos {
  text-align: center;
  margin: 10px 0 25px 0;
}

/* Adresse — petite, fine, gris-bleu */
.region-infos .adresses-global a {
  font-size: 1.05em;
  font-weight: 400;
  color: #104858;
  text-decoration: none;
  opacity: 0.9;
}

/* Téléphone — gros, gras, bien visible */
.region-infos .telephone-global a {
  font-size: 2em;
  /* font-weight: 700; */
  color: #104858;
  text-decoration: none;
}

.region-infos .contact-global button {
  background: #52b1ba;
  color: white;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 22px; /* bouton arrondi */
  border: none;
  cursor: pointer;
  font-size: 1.3em;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  margin-top: 20px;
}

/* Effet au survol */
.region-infos .contact-global button:hover {
  background: #73ab71;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}

/* Effet clic */
.region-infos .contact-global button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
