/* RESET DE BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

/* BODY */
body {
  background-color: #ffffff;
  color: #2e2e2e;
  line-height: 1.6;
}

/* HEADER */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.logo-container { flex: 1; }
.logo { height: 95px; }

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.navbar a {
  text-decoration: none;
  color: #2e2e2e;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  transition: background-color 0.3s, color 0.3s;
}
.navbar a:hover { background-color: #f5f5f5; }
.navbar a.active {
  color: #224E7A;
  border-bottom: 2px solid #48C0A3;
}

.cta-header { display: flex; gap: 0.5rem; }
.btn-header {
  background-color: #48C0A3;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.btn-header:hover { background-color: #3aa18a; }

/* HERO (Version 1 : fond Picsum + overlay) */
.hero {
  /* overlay semi‑transparent */
  background:
    linear-gradient(rgba(34,78,122,0.6),rgba(34,78,122,0.6)),
    url("images/hero.jpg") center/cover no-repeat;

  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p {
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn-hero,
.btn-hero-secondary {
  background-color: #48C0A3;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s;
}
.btn-hero-secondary { background-color: #224E7A; }
.btn-hero:hover { background-color: #3aa18a; }
.btn-hero-secondary:hover { background-color: #1c4061; }

/* SECTION “Nos Prestations” */
.services-overview {
  padding: 2rem 1rem;
  background-color: #f5f5f5;
  text-align: center;
}
.services-overview h2 {
  font-size: 2rem;
  color: #224E7A;
  margin-bottom: 1rem;
}
.services-overview .items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.services-overview .item {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: left;
}
.services-overview .item h3 {
  color: #48C0A3;
  margin-bottom: 0.5rem;
}

/* SECTION “Pourquoi Clean’Office ?” */
.presentation {
  padding: 2rem 1rem;
  text-align: center;
}
.presentation h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.presentation-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.card {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  flex: 1 1 280px;
  max-width: 300px;
}
.card h3 { color: #224E7A; margin-bottom: 0.5rem; }

/* CTA DEVIS (Version 1 : fond uni) */
.cta-devis {
  /* Couleur unie bleu pro */
  background-color: #224E7A;

  /* Suppression de toute image */
  background-image: none;

  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.cta-devis h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.cta-devis p { margin-bottom: 1.5rem; }

/* BANNIÈRES INTERNES */

/* ─── BANNIÈRE “NOS SERVICES” CENTRÉE ─────────────────────────── */
.page-banner {
  background-color: #224E7A;
  display: flex;                /* active le flexbox */
  flex-direction: column;       /* colonne (titre au-dessus du texte) */
  justify-content: center;      /* centre verticalement */
  align-items: center;          /* centre horizontalement */
  padding: 4rem 1rem;           /* un peu plus de hauteur pour respirer */
  text-align: center;           /* s’assure que tout texte est centré */
  min-height: 200px;            /* hauteur minimale (à ajuster si besoin) */
}

.page-banner h1 {
  font-size: 2.5rem;
  color: #fff;
  margin: 0;                    /* supprime marge par défaut */
}
.page-banner p {
  color: #fff !important;
}

.page-banner p {
  font-size: 1.2rem;
  color: #fff;
  margin: 0.5rem 0 0;           /* petit espacement au-dessus */
}


.page-banner h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.page-banner p { color: #224E7A; }

/* LISTE DES SERVICES */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.service-item h2 { color: #224E7A; margin-bottom: 0.5rem; }

/* FORMULAIRE */
.form-section {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.devis-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.devis-form label { font-weight: 600; }
.devis-form input,
.devis-form select,
.devis-form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

/* À PROPOS */
.about-section {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.about-section h2 { color: #224E7A; margin-bottom: 1rem; }
.about-section ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-top: 1rem;
}

/* CONTACT */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.contact-info,
.contact-cta { flex: 1 1 300px; }

/* FOOTER */
.main-footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.main-footer a { color: #224E7A; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-header { flex-direction: column; align-items: flex-start; }
  .navbar ul { flex-direction: column; }
  .hero { padding: 3rem 1rem; }
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .services-overview .items,
  .presentation-content {
    flex-direction: column;
    align-items: center;
  }
  .cta-devis { padding: 1.5rem 1rem; }
}
/* ─── SERVICES LIST (SERVICES.HTML) ───────────────────────────────────────────── */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}


.service-item {
  background-color: #f5f5f5;
  border-radius: 8px;
  flex: 1 1 280px;
  max-width: 300px;
  text-align: center;
  padding: 1.5rem;
}

.service-item i {
  font-size: 2.5rem;
  color: #48C0A3;
  margin-bottom: 0.75rem;
}

.service-item h2 {
  color: #224E7A;
  margin-bottom: 0.5rem;
}

/* Réactivité */
@media (max-width: 768px) {
  .services-list {
    flex-direction: column;
    align-items: center;
  }
}
/* ─── BANDEAU BLEU SPÉCIFIQUE À LA PAGE SERVICES ─────────────────────────────── */
.page-banner.banner-blue {
  background-color: #224E7A;   /* même bleu pro que le bandeau de devis */
  background-image: none;      /* pas d’image derrière */
  color: #fff;                 /* texte en blanc */
  text-align: center;
  padding: 2rem 1rem;          /* même padding que .cta-devis */
}

.page-banner.banner-blue h1 {
  margin-bottom: 0.5rem;
}

.page-banner.banner-blue p {
  opacity: 0.9;                /* léger fondu si tu veux un peu de subtilité */
}



/* ─── IMPACT DE LA PROPRETÉ – CARDS FLEX CENTRÉES ───────────────── */
.impact-section {
  padding: 2rem 1rem;
  background-color: #f5f5f5;
  text-align: center;
}
.impact-section h2 {
  font-size: 2rem;
  color: #224E7A;
  margin-bottom: 2rem;
}

/* Grille en flex pour centrer et contrôler le nombre de colonnes */
.impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centre les cartes sur chaque ligne */
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Cartes de taille fixe en pourcentage */
.stat-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(33.333% - 1.5rem);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-14px) scale(1.03); /* bouge plus fort + zoom */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); /* ombre plus profonde */
}

/* Tablette : 2 cartes par ligne */
@media (max-width: 1024px) {
  .stat-card {
    width: calc(50% - 1.5rem);
  }
}
/* Mobile : 1 carte par ligne */
@media (max-width: 600px) {
  .stat-card {
    width: 100%;
  }
}

/* Icône */
.stat-icon {
  font-size: 3rem;
  color: #48C0A3;
  margin-bottom: 0.5rem;
}
/* Pourcentage */
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #224E7A;
  margin-bottom: 0.5rem;

  /* animation au survol */
  transition: transform 0.3s ease;
}

/* Texte */
.stat-text {
  font-size: 0.95rem;
  color: #2e2e2e;
  line-height: 1.4;
  text-align: center;
}

/* ─── EFFET SURVOL POURCENTAGE ───────────────────────────────────── */
.stat-number {
  /* On prépare l’animation */
  transition: transform 0.3s ease;
  /* (assure-toi que cette ligne existe dans .stat-number) */
}


/* Responsive – une colonne sur petit écran */
@media (max-width: 600px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}


/* FOND LÉGER BLEU POUR SERVICES */
.services-bg {
  background: #f0f4f8;
  padding: 3rem 0 3rem 0;
}

/* SERVICES BOX avec espacement et effet “carte” */
.services-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.service-row {
  display: flex;
  justify-content: center;
}
.service-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(34,78,122,0.10);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 900px;
  margin: 0 2vw;
  min-height: 220px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-box:hover {
  box-shadow: 0 8px 30px rgba(72,192,163,0.14);
  transform: translateY(-5px) scale(1.015);
}
.service-img img {
  width: 170px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(34,78,122,0.07);
}
.service-text {
  flex: 1;
}
.service-text h3 {
  color: #224E7A;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-text ul {
  margin-left: 1.2rem;
  margin-bottom: 0;
  color: #2e2e2e;
  font-size: 1rem;
  text-align: left;
}

@media (max-width: 900px) {
  .service-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
  }
  .service-img img {
    width: 100%;
    height: 160px;
    margin-bottom: 1rem;
  }
}

/* SÉPARATEUR */
.section-divider {
  height: 2px;
  background-color: #e3e7ee;
  margin: 3rem auto;
  width: 85%;
  max-width: 820px;
  border-radius: 2px;
}

/* ENGAGEMENTS */
.engagements-section {
  background: #fafcff;
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
}
.engagements-section h2 {
  color: #224E7A;
  margin-bottom: 2rem;
}
.engagements-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.engagement-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  max-width: 240px;
  min-width: 180px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 7px rgba(34,78,122,0.09);
  transition: box-shadow 0.3s, transform 0.3s;
}
.engagement-card:hover {
  box-shadow: 0 6px 18px rgba(72,192,163,0.16);
  transform: translateY(-4px) scale(1.04);
}
.engagement-card .material-icons {
  font-size: 2.2rem;
  color: #48C0A3;
  margin-bottom: 0.5rem;
}
.engagement-card h4 {
  color: #224E7A;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}
.engagement-card p {
  font-size: 0.97rem;
  color: #2e2e2e;
}

@media (max-width: 900px) {
  .engagements-cards {
    flex-direction: column;
    align-items: center;
  }
  .engagement-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
/* Bannière de bas de page, version verte */
.cta-green {
  background-color: #224E7A; /* même bleu que la DA */
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin: 0;
}

.btn-main-green {
  background-color: #48C0A3;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1rem;
  display: inline-block;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 3px 10px rgba(72, 192, 163, 0.18);
}
.btn-main-green:hover {
  background-color: #3aa18a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(72, 192, 163, 0.25);
}
/* --- Bandeau bleu DA (devis) --- */
.banner-hero-devis {
  background: #224E7A;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
}
.banner-hero-devis h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.banner-hero-devis p {
  font-size: 1.15rem;
  opacity: 0.95;
}

/* --- Fond formulaire devis --- */
.form-bg {
  background: #f6f8fa;
  min-height: 100vh;
  padding: 3rem 0 2rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* --- Carte formulaire --- */
.devis-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(34,78,122,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

.form-row {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 0.45rem 0.8rem;
  gap: 0.6rem;
}
.form-row span.material-icons {
  color: #48C0A3;
  font-size: 1.35rem;
}
.devis-form-card input,
.devis-form-card select,
.devis-form-card textarea {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  width: 100%;
  padding: 0.35rem 0.15rem;
  color: #222;
  font-family: "Open Sans", sans-serif;
}
.devis-form-card select {
  appearance: none;
}
.devis-form-card textarea {
  resize: vertical;
  min-height: 44px;
  max-height: 120px;
}

/* --- Bouton vert --- */
.btn-main.btn-devis {
  background: #48C0A3;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  margin: 1rem 0 0.2rem 0;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(72,192,163,0.07);
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
}
.btn-main.btn-devis:hover {
  background: #3aa18a;
  transform: translateY(-3px) scale(1.03);
}

/* --- Texte confidentialité --- */
.confidentialite {
  font-size: 0.95rem;
  color: #3a4a52;
  opacity: 0.8;
  text-align: center;
  margin-top: 0.6rem;
  margin-bottom: -0.3rem;
}

/* --- Bandeau contact en bas --- */
.contact-banner-devis {
  background: #224E7A;
  color: #fff;
  text-align: center;
  padding: 2.2rem 1rem 2rem 1rem;
  font-size: 1.18rem;
  font-weight: 500;
}
.contact-banner-devis a {
  color: #48C0A3;
  text-decoration: underline;
}
/* --- Bandeau bleu DA (devis) --- */
.banner-hero-devis {
  background: #224E7A;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
}
.banner-hero-devis h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.banner-hero-devis p {
  font-size: 1.15rem;
  opacity: 0.95;
}

/* --- Fond formulaire devis --- */
.form-bg {
  background: #f6f8fa;
  min-height: 100vh;
  padding: 3rem 0 2rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* --- Carte formulaire --- */
.devis-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(34,78,122,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

.form-row {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 0.45rem 0.8rem;
  gap: 0.6rem;
}
.form-row span.material-icons {
  color: #48C0A3;
  font-size: 1.35rem;
}
.devis-form-card input,
.devis-form-card select,
.devis-form-card textarea {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  width: 100%;
  padding: 0.35rem 0.15rem;
  color: #222;
  font-family: "Open Sans", sans-serif;
}
.devis-form-card select {
  appearance: none;
}
.devis-form-card textarea {
  resize: vertical;
  min-height: 44px;
  max-height: 120px;
}

/* --- Bouton vert --- */
.btn-main.btn-devis {
  background: #48C0A3;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  margin: 1rem 0 0.2rem 0;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(72,192,163,0.07);
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
}
.btn-main.btn-devis:hover {
  background: #3aa18a;
  transform: translateY(-3px) scale(1.03);
}

/* --- Texte confidentialité --- */
.confidentialite {
  font-size: 0.95rem;
  color: #3a4a52;
  opacity: 0.8;
  text-align: center;
  margin-top: 0.6rem;
  margin-bottom: -0.3rem;
}

/* --- Bandeau contact en bas --- */
.contact-banner-devis {
  background: #224E7A;
  color: #fff;
  text-align: center;
  padding: 1.15rem 1rem 0.6rem 1rem;
  font-size: 1.11rem;
  font-weight: 500;
}
.contact-banner-devis a {
  color: #48C0A3;
  text-decoration: underline;
}
/* SECTION TIMELINE */
.about-timeline-section {
  padding: 2rem 1rem 0 1rem;
  background: #f7fafd;
}
.about-timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.timeline-block {
  flex: 1 1 400px;
  min-width: 320px;
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(34,78,122,0.07);
}
.timeline-list {
  margin: 1.2rem 0 0 0;
  padding: 0;
  list-style: none;
}
.timeline-list li {
  font-size: 1rem;
  color: #224E7A;
  margin-bottom: 0.4rem;
}
.timeline-year {
  font-weight: bold;
  color: #48C0A3;
  margin-right: 0.5rem;
}

/* IMPACT PROPRETE CARDS */
.impact-proprete-about {
  background: #224E7A;
  color: #fff;
  padding: 2rem 1rem 2.5rem 1rem;
  text-align: center;
}
.impact-proprete-about h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.impact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.impact-card {
  background: #fff;
  color: #224E7A;
  border-radius: 12px;
  padding: 1.5rem;
  width: 240px;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(34,78,122,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.impact-icon { font-size: 2.5rem; color: #48C0A3; }
.impact-number { font-size: 2rem; font-weight: bold; color: #224E7A; margin: 0.4rem 0; }
.impact-text { color: #2e2e2e; font-size: 1rem; }
.impact-source { display: block; font-size: 0.95em; color: #48C0A3; margin-top: 0.2em; }

/* ENGAGEMENTS */
.about-engagements-section { background: #f5f9fc; padding: 2rem 1rem; }
.about-engagements-section h2 { color: #224E7A; text-align: center; margin-bottom: 1.5rem; }
.about-engagements-grid {
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center;
}
.engagement-item {
  background: #fff; border-radius: 10px; padding: 1.5rem; width: 250px;
  text-align: center; box-shadow: 0 2px 10px rgba(34,78,122,0.07);
}
.engagement-icon { font-size: 2.2rem; color: #48C0A3; margin-bottom: 0.5rem; }
.engagement-item h3 { color: #224E7A; margin-bottom: 0.5rem; }

/* DIFFERENCE */
.about-difference-section { padding: 2rem 1rem; text-align: center; }
.about-difference-section h2 { color: #224E7A; margin-bottom: 1rem; }
.difference-list { display: inline-block; text-align: left; margin: 0 auto; padding: 0; }
.difference-list li { color: #224E7A; font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ÉQUIPE */
.about-equipe-section { background: #f7fafd; padding: 2rem 1rem; }
.about-equipe-section h2 { color: #224E7A; margin-bottom: 1rem; text-align: center; }
.about-equipe-flex { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.about-equipe-photo {
  border-radius: 100px; width: 120px; height: 120px; object-fit: cover;
  box-shadow: 0 2px 10px rgba(34,78,122,0.07);
}

/* TÉMOIGNAGE */
.about-temoignage-section { padding: 2rem 1rem; text-align: center; }
.about-temoignage-section blockquote {
  background: #fff; border-left: 5px solid #48C0A3; border-radius: 10px;
  margin: 0 auto; padding: 1.5rem 2rem; max-width: 600px; color: #224E7A;
  box-shadow: 0 2px 10px rgba(34,78,122,0.10);
  font-style: italic; position: relative;
}
.about-temoignage-section .material-icons {
  font-size: 2.2rem; color: #48C0A3; vertical-align: middle;
}
.about-temoignage-section blockquote footer { font-size: 1rem; color: #48C0A3; margin-top: 0.7rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-timeline, .about-engagements-grid, .impact-cards, .about-equipe-flex {
    flex-direction: column;
    align-items: center;
  }
  .timeline-block, .engagement-item, .impact-card {
    width: 100%;
    min-width: unset;
    max-width: 500px;
  }
}
.about-wave-separator {
  height: 45px;
  background: linear-gradient(to bottom, #f7fafd 75%, #224E7A 100%);
  border: none;
  margin: 0;
}
.about-section-divider {
  height: 36px;
  background: linear-gradient(to top, #f5f5f5 60%, #224E7A 100%);
  border: none;
  margin: 0;
}

 

.about-section-gap {
  height: 2rem;      /* Change la valeur si tu veux plus/moins d'espace */
  width: 100%;
  background: #f7fafd;
  display: block;
}

.fierte-equipe {
  display: block;      /* Pour que ça prenne toute la ligne */
  text-align: center;  /* Pour centrer */
  font-style: italic;  /* Pour mettre en italique */
  margin-top: 1.1em;   /* Un petit espace au-dessus */
  color: #224E7A;      /* (optionnel) Pour rappeler la charte graphique */
}

.about-story-mission {
  background: #fff;
  padding: 2.5rem 1rem 2rem 1rem;
}

.about-sm-container {
  display: flex;
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.about-sm-block {
  background: #f7fafd;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(34,78,122,0.07);
  padding: 2rem 1.5rem;
  flex: 1 1 350px;
  min-width: 270px;
}

.about-sm-block h2 {
  color: #224E7A;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.about-sm-block ul {
  list-style: disc inside;
  padding: 0;
}

.about-sm-block li {
  font-size: 1.07rem;
  margin-bottom: 0.9em;
  color: #2e2e2e;
  line-height: 1.55;
}





.about-difference-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-difference-logo img {
  height: 200px;   /* Ajuste la taille selon ton logo */
  width: auto;
  display: block;
}

.about-difference-text {
  flex: 1;
}

@media (max-width: 700px) {
  .about-difference-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-difference-logo img {
    margin-bottom: 1.5rem;
  }
}

.about-histoire-mission {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2.5rem 0;
  background: transparent;
}
.about-histoire-mission-inner {
  display: flex;
  gap: 2.5rem;
  background: transparent;
  align-items: stretch;
  max-width: 1100px;
  width: 100%;
}
.about-histoire-mission-block {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(34,78,122,0.08);
  padding: 2.2rem 2rem;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-histoire-mission-block h2 {
  color: #224E7A;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.about-histoire-mission-block ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 1.08rem;
}
.about-histoire-mission-block ul li {
  margin-bottom: 1.1em;
  line-height: 1.7;
}
.about-histoire-mission-separator {
  width: 1px;
  background: #e3e7ee;
  margin: 0 0.8rem;
  border-radius: 1.5px;
  min-height: 220px;
  align-self: center;
}
@media (max-width: 900px) {
  .about-histoire-mission-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-histoire-mission-separator {
    width: 50%;
    height: 1.5px;
    min-height: unset;
    background: #e3e7ee;
    margin: 2rem auto;
  }
}



.cleansoffice-pro {
  background: #f7fafd;
  padding: 3.5rem 0 3rem 0;
  box-shadow: 0 4px 32px rgba(34, 78, 122, 0.06);
  border-radius: 18px;
  margin: 0 auto 2.5rem auto;
  max-width: 1050px;
}

.about-difference-title {
  text-align: center;
  color: #224E7A;
  font-size: 1.7rem;
  margin-bottom: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.about-difference-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-difference-logo {
  flex: 0 0 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(72, 192, 163, 0.09);
  padding: 2rem;
  height: 190px;
  min-width: 190px;
}

.about-difference-logo img {
  width: 140px;
  height: auto;
  display: block;
}

.about-difference-main {
  flex: 1 1 0;
  text-align: left;
}

.difference-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 550px;
  font-size: 1.19rem;
  color: #224E7A;
}

.difference-list li {
  margin-bottom: 1.1rem;
  padding-left: 1.1em;
  position: relative;
}
.difference-list li::before {
  content: "✔";
  color: #48C0A3;
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-difference-flex {
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;
  }
  .about-difference-main {
    text-align: center;
  }
  .about-difference-logo {
    margin-bottom: 0.2rem;
    height: auto;
  }
}

/* ===== ZONES D’INTERVENTION – LIENS VILLES ===== */

.sur-mesure-row .service-text ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sur-mesure-row .service-text ul li {
  margin: 0;
}

.sur-mesure-row .service-text ul li a {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(72, 192, 163, 0.12);
  color: #224E7A;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sur-mesure-row .service-text ul li a:hover {
  background: #48C0A3;
  color: #ffffff;
}


/* ===== CONTENU SEO LOCAL – MISE EN PAGE ===== */

.seo-local {
  max-width: 1000px;
  margin: 0 auto;
}

.seo-local h2 {
  margin-top: 40px;
  color: #224E7A;
}

.seo-local p,
.seo-local ul {
  line-height: 1.7;
  font-size: 1.05rem;
}

.seo-local ul {
  padding-left: 20px;
}

/* ===== ENCARTS SEO LOCAL ===== */

.seo-local {
  max-width: 1100px;
  margin: 0 auto;
}

.seo-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.seo-card h2 {
  color: #224E7A;
  margin-bottom: 15px;
}

.seo-card p,
.seo-card ul {
  font-size: 1.05rem;
  line-height: 1.7;
}

.seo-card ul {
  padding-left: 20px;
}

/* ===== LIENS VILLES – STYLE PASTILLES (PAGES VILLES) ===== */

.seo-local .service-text a {
  display: inline-block;
  padding: 8px 14px;
  margin: 6px 6px 0 0;
  background: rgba(72, 192, 163, 0.12);
  color: #224E7A;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.seo-local .service-text a:hover {
  background: #48C0A3;
  color: #ffffff;
}