.elementor-kit-6{--e-global-color-primary:#00316F;--e-global-color-secondary:#DEECFD;--e-global-color-text:#00316F;--e-global-color-accent:#005ACC;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 h2{font-size:40px;font-weight:500;line-height:55px;}.elementor-kit-6 img{border-radius:10px 10px 10px 10px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.highlight {
  color: var(--e-global-color-accent);
  font-weight: 700;
}

h2 {
  text-decoration: underline;
  text-decoration-color: var(--e-global-color-secondary);
  text-decoration-thickness: 18px; /* épaisseur du trait */
  text-underline-offset: -8px; /* trait qui “mord” un peu sous le texte */
  text-decoration-skip-ink: none; /* évite les coupures sous les lettres descendantes */
  margin-bottom: 0;
}


/* === Tableau personnalisé avec couleurs système Elementor === */

table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: white;
  font-family: var(--e-global-typography-text-font-family);
  font-size: var(--e-global-typography-text-font-size);
  color: var(--e-global-color-text);
}

table thead {
  background-color: var(--e-global-color-primary);
  color: white;
  border: none;
}

table th,
table td {
  padding: 16px 20px;
  text-align: left;
  border: none;
}

table tbody tr:nth-child(odd) {
  background-color: white;
}

table tbody tr:nth-child(even) {
  background-color: white;
}

table th {
  font-weight: bold;
}


/* Bullet point */
ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

ul li {
  position: relative;
  padding-left: 55px; /* décalage du texte */
  margin-bottom: 12px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

ul li::before {
  content: "";
  position: absolute;
  left: 20px; /* centrage horizontal du rond dans le padding */
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 3px solid var(--e-global-color-accent); /* couleur du simulateur */
  background: white;
  border-radius: 50%;
  box-sizing: border-box;
}
/* Désactive les puces personnalisées pour les dates de l'Elementor Post Info */
.elementor-post-info.elementor-icon-list-items li::before {
  content: none !important;
  display: none !important;
}

/* Désactive les puces personnalisées dans le menu Elementor */
.elementor-nav-menu,
.elementor-nav-menu ul,
.elementor-nav-menu li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.elementor-nav-menu li::before {
  content: none !important;
  display: none !important;
}



/* === Citations */
blockquote,
.quote {
  width: 90%;
  margin: 1.5em auto 1.5em 30px; /* décalage de 30px à droite */
  padding: 1em 1.5em;
  background-color: var(--e-global-color-secondary);
  border-left: 8px solid var(--e-global-color-accent);
  border-radius: 10px;
  font-style: italic;
  color: var(--e-global-color-text);
  box-sizing: border-box;
}

/* === FAQ Accordéon Design === */
.faq-section {
  width: 100%;
  max-width: 95%;
  margin: 40px auto;
  font-family: var(--e-global-typography-text-font-family);
  color: var(--e-global-color-text);
}

/* Chaque bloc Q/R */
.faq-item {
  border: 1px solid var(--e-global-color-secondary);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* === Question === */
.faq-question {
  background: var(--e-global-color-primary);
  color: white;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--e-global-color-accent);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Quand la question est ouverte */
.faq-item.open .faq-question::after {
  content: '−';
}

/* === Réponse === */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--e-global-color-secondary);
  color: var(--e-global-color-text);
  padding: 0 20px;
  transition: all 0.4s ease;
}

/* État ouvert */
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 20px;
  animation: slideDown 0.4s ease;
}

/* === Animation ouverture douce === */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .faq-section {
    width: 95%;
  }

  .faq-question {
    font-size: 16px;
    padding: 14px 18px;
  }

  .faq-answer {
    font-size: 15px;
    padding: 0 16px;
  }
}/* End custom CSS */