/* Start custom CSS for html, class: .elementor-element-a2696e2 *//* ---- SECTION SEO 75 ---- */
#seo-paris {
  background: #FFFFFF;
  padding: 25px 20px;
  color: #1C1C1C;
  font-family: "Inter", sans-serif;
}

.seo75-container {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeSlideUp 0.9s ease forwards;
  opacity: 0;
}

/* TITRES */
#seo-paris h1
{
    color : #333;
    text-align: center;
    font-size:2.5rem;
}
#seo-paris h2
{
    color: #333;
    text-align:center;
    font-size:1.5rem;
}
#seo-paris h3 {
  color: #FF8B00;  /* ORANGE FONCÉ */
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* PARAGRAPHES */
#seo-paris p {
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  text-align:justify;
}

/* LIGNES DE SÉPARATION */
#seo-paris hr {
  border: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

/* LISTES */
.seo75-list {
  padding-left: 0;
  margin: 25px 0;
}

.seo75-list li {
  list-style: none;
  background: #F8F8F8;
  padding: 12px 18px;
  margin-bottom: 12px;
  border-left: 4px solid #FF8B00;  /* ORANGE FONCÉ */
  border-radius: 4px;
  transition: transform 0.25s ease, background 0.25s ease;
  animation: fadeSlideUp 0.7s ease forwards;
  opacity: 0;
}

/* HOVER LISTES */
.seo75-list li:hover {
  background: #F2F2F2;
  transform: translateX(6px);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Historique et missions */
.historique-missions {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: left;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.historique-missions h2 {
  font-size: 1.8rem;
  color: #FF8B00;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
}

.historique-missions p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #1C1C1C;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .historique-missions {
    padding: 20px 15px;
  }
  .historique-missions h2 {
    font-size: 1.6rem;
  }
  .historique-missions p {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-528a03a *//* Conteneur général */
.zones-prestations .container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}



/* Carte départements */
.map-departements h2 {
  text-align: center;
  color: #FF8B00;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.departements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.departement-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 150px;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  color: #1C1C1C;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.departement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background: #FFF4E6;
  color: #e67e22;
}

/* Prestations en 3 colonnes */
.prestations-summary h2 {
  text-align: center;
  color: #FF8B00;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.prestation-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.prestation-card a {
  display: block;
  font-weight: 700;
  color: #FF8B00;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-decoration: none;
}

.prestation-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.prestation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background: #FFF4E6;
}

/* Boutons CTA */
.btn-container {
  text-align: center;
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #FF8B00;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e67e22;
}

/* Responsive */
@media (max-width: 992px) {
  .departements-grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .departements-grid {
    flex-direction: column;
    align-items: center;
  }
  .departement-card {
    width: 80%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d08e2df *//* FAQ À propos */
#faq-a-propos {
  background: #fff;
  padding: 60px 20px;
  color: #1C1C1C;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

#faq-a-propos h2 {
  color: #FF8B00;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #F8F8F8;
  border-left: 4px solid #FF8B00;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #1C1C1C;
  transition: background 0.25s;
}

.faq-question:hover {
  background: #FFF3E0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  background: #FFFFFF;
}

.faq-answer p {
  margin: 16px 0;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* ajustable selon contenu */
  padding: 16px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}/* End custom CSS */