/* =======================
   STYLES GÉNÉRAUX
======================= */
body {
  font-family: 'Arial', sans-serif;
  background: #f5f9ff; /* fond clair bleu pâle */
  color: #222;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* =======================
   EN-TÊTE ET LOGO
======================= */
header {
  background: #0a4da3; /* bleu foncé */
  color: white;
  padding: 8px 0; /* espace vertical réduit */
  text-align: center;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* espace entre logo et titre */
}

.logo {
  height: 40px; /* taille adaptée à l'en-tête */
  width: auto;
  object-fit: contain;
}

header h1 {
  font-size: 22px;
  margin: 0;
  color: white;
}

nav {
  margin-top: 8px;
}

nav a {
  color: white;
  margin: 0 12px;
  font-weight: bold;
  font-size: 15px;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* =======================
   SECTION CONTACT / ADRESSES
======================= */
.contact-container {
  text-align: center;
  padding: 40px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.contact-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* =======================
   FORMULAIRE DE CONTACT
======================= */
.form-section {
  background: #e6f0ff; /* bleu clair */
  padding: 40px 20px;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: #0a4da3;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #083b81;
}

/* =======================
   PIED DE PAGE
======================= */
footer {
  background: #0a4da3;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
  font-size: 14px;
}

/* =======================
   RESPONSIVE (adaptation mobile)
======================= */
@media screen and (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .header-content {
    flex-direction: column;
    gap: 5px;
  }

  nav a {
    display: block;
    margin: 5px 0;
  }
}
.presentation {
  padding: 60px 10%;
  background-color: #f9f9f9; /* fond clair */
}

.presentation-contenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* s'adapte aux petits écrans */
}

.presentation .texte {
  flex: 1;
  min-width: 320px;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

.presentation .texte h2 {
  color: #004080;
  font-size: 28px;
  margin-bottom: 20px;
}

.presentation .image {
  flex: 1;
  text-align: right;
}

.presentation .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.presentation .image img:hover {
  transform: scale(1.03);
}
.maintenance {
  padding: 60px 10%;
  background-color: #f8faff;
}

.maintenance-contenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* s’adapte sur mobile */
}

/* IMAGE À GAUCHE */
.maintenance-image {
  flex: 1;
  text-align: center;
}

.maintenance-image img {
  width: 100%;
  max-width: 450px; /* limite la taille maximale */
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.maintenance-image img:hover {
  transform: scale(1.05);
}

/* TEXTE À DROITE */
.maintenance-texte {
  flex: 1;
  min-width: 320px;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

.maintenance-texte h2 {
  color: #004080;
  font-size: 28px;
  margin-bottom: 20px;
  border-left: 5px solid #004080;
  padding-left: 15px;
}

.maintenance-texte ul {
  margin-left: 20px;
}

.maintenance-texte ul li {
  margin-bottom: 8px;
}
/* SECTION GLOBALE */
.nettoyage-zigzag {
  background-color: #f8f9fa;
  padding: 70px 10%;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.nettoyage-zigzag h2 {
  text-align: center;
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* BLOCS ALTERNÉS */
.nettoyage-bloc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

/* Pour le zigzag inversé */
.nettoyage-bloc.inverse {
  flex-direction: row-reverse;
}

/* IMAGES */
.nettoyage-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nettoyage-image img:hover {
  transform: scale(1.03);
}

/* TEXTES */
.nettoyage-texte {
  flex: 1;
}

.nettoyage-texte h3 {
  color: #004080;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.nettoyage-texte p {
  line-height: 1.8;
  font-size: 1rem;
  color: #444;
  text-align: justify;
}

/* RESPONSIVE (téléphone & tablette) */
@media (max-width: 900px) {
  .nettoyage-bloc,
  .nettoyage-bloc.inverse {
    flex-direction: column;
    text-align: center;
  }

  .nettoyage-image img {
    max-width: 90%;
  }

  .nettoyage-texte {
    margin-top: 20px;
  }
}
.placement-gestion {
  background-color: #f8f9fa;
  padding: 70px 10%;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.placement-gestion h2 {
  text-align: center;
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.placement-contenu {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap; /* s’adapte aux petits écrans */
}

/* IMAGE À GAUCHE */
.placement-image {
  flex: 1;
  text-align: center;
}

.placement-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.placement-image img:hover {
  transform: scale(1.03);
}

/* TEXTE À DROITE */
.placement-texte {
  flex: 2;
  min-width: 300px;
}

.placement-texte h3 {
  font-size: 1.6rem;
  color: #004080;
  margin-bottom: 20px;
}

.placement-texte h4 {
  font-size: 1.2rem;
  color: #004080;
  margin-top: 15px;
  margin-bottom: 10px;
}

.placement-texte p {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: justify;
}

.placement-texte ul {
  margin-left: 20px;
}

.placement-texte ul li {
  margin-bottom: 8px;
}

/* RESPONSIVE : TELEPHONE */
@media (max-width: 900px) {
  .placement-contenu {
    flex-direction: column;
    text-align: center;
  }

  .placement-image img {
    max-width: 90%;
    margin: 0 auto;
  }

  .placement-texte {
    margin-top: 20px;
  }
}
.formation-personnel {
  background-color: #f8f9fa;
  padding: 70px 10%;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.formation-personnel h2 {
  text-align: center;
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.formation-contenu {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* IMAGE À GAUCHE */
.formation-image {
  flex: 1;
  text-align: center;
}

.formation-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.formation-image img:hover {
  transform: scale(1.03);
}

/* TEXTE À DROITE */
.formation-texte {
  flex: 2;
  min-width: 300px;
}

.formation-texte p {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: justify;
}

/* RESPONSIVE : téléphone et tablette */
@media (max-width: 900px) {
  .formation-contenu {
    flex-direction: column;
    text-align: center;
  }

  .formation-image img {
    max-width: 90%;
    margin: 0 auto;
  }

  .formation-texte {
    margin-top: 20px;
  }
}
.fourniture-logistique {
  background-color: #f8f9fa;
  padding: 70px 10%;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.fourniture-logistique h2 {
  text-align: center;
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fourniture-contenu {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* IMAGE À GAUCHE */
.fourniture-image {
  flex: 1;
  text-align: center;
}

.fourniture-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.fourniture-image img:hover {
  transform: scale(1.03);
}

/* TEXTE À DROITE */
.fourniture-texte {
  flex: 2;
  min-width: 300px;
}

.fourniture-texte p {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: justify;
}

/* RESPONSIVE : téléphone et tablette */
@media (max-width: 900px) {
  .fourniture-contenu {
    flex-direction: column;
    text-align: center;
  }

  .fourniture-image img {
    max-width: 90%;
    margin: 0 auto;
  }

  .fourniture-texte {
    margin-top: 20px;
  }
}
.service-section {
  padding: 60px 10%;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.service-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.service-image img {
  width: 480px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.service-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.service-text h2 {
  color: #005baa;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-text ul {
  margin: 15px 0;
  padding-left: 20px;
}

.service-text ul li {
  margin-bottom: 8px;
  list-style-type: "✔ ";
  color: #0077cc;
}

@media (max-width: 900px) {
  .service-container {
    flex-direction: column;
  }

  .service-image img {
    width: 100%;
  }
}
.histoire-section {
  padding: 60px 10%;
  background-color: #f8f9fb;
  color: #222;
}

.histoire-section h1 {
  text-align: center;
  color: #005baa;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.histoire-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.histoire-container.inverse {
  flex-direction: row-reverse;
}

.histoire-image img {
  width: 450px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  object-fit: cover;
}

.histoire-texte {
  flex: 1;
  margin: 0 30px;
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: justify;
}

.citation {
  text-align: center;
  margin-top: 60px;
  font-style: italic;
  color: #005baa;
}

@media (max-width: 900px) {
  .histoire-container {
    flex-direction: column;
  }

  .histoire-image img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.portrait {
  text-align: center;
}

.portrait .nom {
  margin-top: 10px;
  font-weight: bold;
  color: #004aad;
  font-size: 18px;
}

.portrait .nom span {
  display: block;
  font-weight: normal;
  font-size: 15px;
  color: #555;
}
