/* Start custom CSS for html, class: .elementor-element-f83c9eb *//* Bloc Titre Contact */
.bloc-titre {
    text-align: center;
    margin: 0px 0px 0;
    font-family: 'Montserrat', sans-serif;
}

.bloc-titre h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2a44; /* couleur accent similaire à ton branding */
    line-height: 1.2;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    text-align: center;

}

.bloc-titre h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f2a44; /* bleu foncé */
  margin-bottom: 25px;
  text-align: center;
}

@media (max-width: 768px) {
    .bloc-titre h1 {
        font-size: 1.6rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4f595ea */.seo-list {
  list-style: none;
  padding-left: 0;
  margin: 25px auto;
  max-width: 900px;
}

.seo-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 1rem;
  color: #1a1a1a;
}

/* Flèche orange */
.seo-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 0;
  color: #d46a27; /* orange du site */
  font-weight: 700;
  font-size: 1.05rem;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fe5a48c *//* ========================
   Sections SEO – Prestations
   ======================== */
.seo-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Titres H2 SEO */
.seo-h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f2a44; /* Bleu foncé */
  margin-bottom: 25px;
  text-align: center;
}

/* Titres H3 SEO */
.seo-h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d46a27; /* Orange */
  margin-bottom: 12px;
}

/* Paragraphes SEO */
.seo-paragraph {
  font-size: 1rem;
  line-height: 1.75;
  color: #1a1a1a;
  margin-bottom: 18px;
  text-align: justify;
}

/* Listes SEO */
.seo-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 900px;
}

/* Élément de liste */
.seo-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Flèche */
.seo-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 2px;
  color: #d46a27; /* Orange */
  font-weight: 700;
}

/* Liens SEO */
.seo-list a {
  color: #0f2a44; /* Bleu foncé */
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,42,68,0.3);
  transition: all 0.25s ease;
}

/* Hover liens */
.seo-list a:hover {
  color: #d46a27; /* Orange */
  border-bottom-color: #d46a27;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-h2 {
    font-size: 1.6rem;
  }

  .seo-paragraph,
  .seo-list li {
    font-size: 0.95rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c9245c9 *//* ===========================
   Tarifs – Style général
   =========================== */

.tarifs-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Titre */
.tarifs-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f2a44; /* bleu foncé */
  text-align: center;
  margin-bottom: 20px;
}

/* Texte d’introduction */
.tarifs-intro {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  text-align: center;
}

/* Tableau */
.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  background: #f9f5f0; /* fond beige clair */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* En-tête */
.tarifs-table thead th {
  background: #0f2a44; /* bleu foncé */
  color: #ffffff;
  font-weight: 700;
  padding: 16px;
  text-align: left;
  font-size: 1rem;
}

/* Cellules */
.tarifs-table td {
  padding: 15px 16px;
  font-size: 1rem;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Dernière ligne */
.tarifs-table tbody tr:last-child td {
  border-bottom: none;
}

/* Mise en valeur des prix */
.tarifs-table td strong {
  color: #d46a27; /* orange */
  font-weight: 700;
}

/* Ligne au survol */
.tarifs-table tbody tr:hover {
  background: rgba(212, 106, 39, 0.08);
}

/* Note sous le tableau */
.tarifs-note {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  text-align: center;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .tarifs-container h2 {
    font-size: 1.6rem;
  }

  .tarifs-table thead {
    display: none;
  }

  .tarifs-table,
  .tarifs-table tbody,
  .tarifs-table tr,
  .tarifs-table td {
    display: block;
    width: 100%;
  }

  .tarifs-table tr {
    margin-bottom: 18px;
    background: #f9f5f0;
    border-radius: 10px;
    padding: 10px;
  }

  .tarifs-table td {
    border: none;
    padding: 8px 10px;
    font-size: 0.95rem;
  }

  .tarifs-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #0f2a44;
    display: block;
    margin-bottom: 4px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1896368 *//* ---- SECTION CTA CONTACT ---- */
#cta-contact {
  background: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #1C1C1C;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

#cta-contact h2 {
  color: #d46a27;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

#cta-contact p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Boutons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  text-decoration: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: transform 0.25s, box-shadow 0.25s;
}

/* Bouton d'appel */
.call-btn {
  background-color: #d46a27;
  color: #FFFFFF;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(255,139,0,0.35);
}

/* Bouton retour */
.return-btn {
  background-color: #F2F2F2;
  color: #1C1C1C;
  border: 1px solid #DDDDDD;
}

.return-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a052aea *//* ---- FAQ container ---- */
.faq-section {
  margin: 40px auto;
  max-width: 900px;
  padding: 20px;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #d46a27;
}

/* ---- Question block ---- */
.faq-item {
  background: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

/* QUESTION */
.faq-question {
  cursor: pointer;
  padding: 18px 20px;
  margin: 0;
  font-size: 1.1rem;
  position: relative;
  font-weight: 600;
  color: #333;
}

/* Icon + */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s;
  color: #d46a27;
}

/* Icon rotates when open */
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

/* ANSWER (hidden by default) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* When open */
.faq-item.active .faq-answer {
  padding: 10px 20px 20px;
  max-height: 500px;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.7rem;
  }
  .faq-question {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f04c87d *//* ========================
   Avantages pratiques & Engagements
   ======================== */
.seo-advantages h2,
.seo-engagements h2 {
  font-size: 1.8rem;
  color: #1f2f46; /* bleu foncé */
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
}

.advantages-list,
.engagements-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.advantages-list li,
.engagements-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-weight: 500;
}

/* Flèches et puces */
.advantages-list li::before {
  content: "➤"; /* flèche classique SEO-friendly */
  position: absolute;
  left: 0;
  color: #d46a27; /* orange pour mettre en avant */
  font-size: 1.2rem;
}

.engagements-list li::before {
  content: "🟢"; /* rond vert pour engagement */
  position: absolute;
  left: 0;
  font-size: 1rem;
  color: #d46a27;
}

/* Responsive */
@media(max-width:768px) {
  .seo-advantages h2,
  .seo-engagements h2 {
    font-size: 1.5rem;
  }
  .advantages-list li,
  .engagements-list li {
    font-size: 0.95rem;
    padding-left: 25px;
  }
}/* End custom CSS */