
    <style>
        .carousel-images {
    display: flex;
    overflow: hidden;
    width: 100%; /* Prend toute la largeur disponible */
}

.presentation-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* important pour que les éléments passent à la ligne */
  gap: 20px;
}

.presentation-left,
.presentation-right {
  flex: 1 1 45%; /* prend 45% de la largeur en desktop */
  min-width: 300px; /* évite que ça se casse trop petit */
}
@media (max-width: 768px) {
  .presentation-container {
    flex-direction: column;
    text-align: center;
  }

  .presentation-left,
  .presentation-right {
    flex: 1 1 100%;
  }
}


   body {
          overflow-x: hidden;
          margin: 0;
          padding: 0;
          max-width: 100vw;
        }
        
        * {
          box-sizing: border-box;
        }
        body {
}

h1 {
    font-size: 48px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 24px;
}
p {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 18px;
    }
    p {
        font-size: 14px;
    }
}

   
@media screen and (max-width: 768px) {
  .presentation-right .domain i {
    font-size: 20px; /* réduit la taille des icônes */
  }

  .presentation-right .domain span {
    font-size: 14px; /* réduit la taille du texte */
  }

  .presentation-right .domain {
    gap: 6px; /* réduit l’espacement */
    margin-bottom: 6px;
  }
}
 
/* 1. Bloquer tout scroll horizontal au niveau de la page */
html, body {
  overflow-x: hidden;
}

/* 2. Veiller à ne plus utiliser 100vw qui peut créer un débordement */
body {
  /* supprimez / commentez cette ligne si vous l'avez : */
  /* max-width: 100vw; */

  /* à la place vous pouvez forcer 100% sans englober la scrollbar */
  width: 100%;
  margin: 0;
  padding: 0;
}

/* 3. Vérifier les conteneurs : jamais width: 100vw; utilisez width: 100%; */
.container, .presentation-container, .what-we-do-container, .about-container {
  width: 100%;
  max-width: 1200px; /* ou la largeur max souhaitée */
  margin: 0 auto;
  box-sizing: border-box;
}


@media screen and (max-width: 768px) {
  .what-we-do-right {
    position: relative;
    padding-left: 0;
  }

  .domain-icon {
    position: relative;
    left: -50px; /* déplace vers la gauche */
  }
}


.newsletter-title {
  color:rgb(6, 248, 6); /* vert brillant */
  font-weight: bold;
  text-shadow: 0 0 5px #32CD32, 0 0 10px #32CD32;
}


.carousel-images img {
    max-width: 100%;  /* Les images s'ajustent à 100% de la largeur du conteneur */
    height: auto;     /* La hauteur s'ajuste automatiquement pour conserver les proportions */
}

@media screen and (max-width: 768px) {
    .carousel-images img {
        width: 100%; /* Sur les écrans de taille mobile, l'image prend toute la largeur */
        top: px;
    }
}

        /* Style de la notification */
        .notification {
            display: none;
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 20px 30px;
            border-radius: 8px;
            font-size: 20px; /* Taille du texte augmentée */
            font-weight: bold;
            z-index: 1000;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }
        .notification.success {
            background-color: #4caf50; /* Vert */
            color: #fff;
        }
        .notification.error {
            background-color: #f44336; /* Rouge */
            color: #fff;
        }
        #newsletter-message{
            font: size 20px;
            color: black;
        }


        .rating {
    display: flex; /* Aligner les étoiles horizontalement */
    gap: 5px; /* Espacement entre les étoiles */
    justify-content: center; /* Centrer les étoiles */
    align-items: center;
}


/* ---

/* Animation de défilement vertical */
@keyframes autoScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .gallery-scroll {
    grid-template-columns: 1fr 1fr; /* 2 colonnes sur mobile */
  }
}



@media screen and (max-width: 768px) {
    .presentation-right {
        display: flex;
        flex-direction: row; /* Alignement horizontal */
        justify-content: center; /* Centre horizontalement les icônes */
        gap: 50px; /* Espacement entre chaque domaine */
        margin-top: 20px; /* Décalage si nécessaire */
    }

    .presentation-right .domain {
        flex-direction: column; /* Icône au-dessus du texte */
        align-items: center;   /* Centre texte et icône */
        margin-bottom: 0;      /* Supprime les marges verticales */
    }

    .presentation-right .icon {
        font-size: 2em; /* Taille icône */
        margin-bottom: 5px; /* Petit espace sous l’icône */
    }
}

      
 
 





.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.10);
}

.hero-content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
}

/* LEFT SIDE */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 3px rgba(0,0,0,0.05); /* très légère ombre */
}

.ong-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: black;
}

.ong-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #333;
}

/* EMAIL FORM */
.email-form {
  display: flex;
  gap: 10px;
}

.email-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.email-form button {
  padding: 12px 22px;
  background: black;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.email-form button:hover {
  background: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-title {
    font-size: 40px;
  }
}


.about-section {
  padding: 60px 10%;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1A73E8;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
}


.interventions-section {
  padding: 60px 10%;
  background: #f5f9ff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #1A73E8;
  margin-bottom: 40px;
}

.interventions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #dce6f9;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #1A73E8;
}

.card h3 {
  color: #1A73E8;
  margin-bottom: 10px;
}
.domains {
  padding: 60px 10%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Bloc général */
.domain-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Inversion des blocs */
.domain-item.reverse {
  flex-direction: row-reverse;
}

/* Textes */
.domain-text {
  flex: 1;
  min-width: 280px;
}

.domain-text h2 {
  color: #1A73E8;
  font-size: 2rem;
  margin-bottom: 15px;
}

.domain-text p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

/* Images rondes */
.domain-image {
  flex: 1;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.domain-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #e6eefc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .domain-item,
  .domain-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .domain-text p {
    text-align: center;
  }

  .domain-image img {
    width: 250px;
    height: 250px;
  }
}

/* --- Styles scope pour le test unique --- */
#single-domain { width: 90%; max-width: 1100px; margin: 40px auto; }
#single-domain .sd-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 20px;
}
#single-domain .sd-image { flex: 0 0 40%; display:flex; justify-content:center; }
#single-domain .sd-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #1A73E8;
  display: block;
}
#single-domain .sd-text { flex: 1; min-width:260px; }
#single-domain .sd-text h3 {
  margin: 0 0 10px 0;
  color: #1A73E8;
  font-size: 1.6rem;
}
#single-domain .sd-text p {
  margin: 0;
  line-height: 1.6;
  color: #222;
  text-align: left;
}

/* Responsive: empile sur mobile */
@media (max-width: 820px) {
  #single-domain .sd-inner { flex-direction: column; text-align: center; }
  #single-domain .sd-image { order: 0; }
  #single-domain .sd-text { order: 1; }
  #single-domain .sd-text p { text-align: center; }
  #single-domain .sd-image img { width: 200px; height: 200px; }
}


/* --- 2ᵉ domaine : texte à gauche, image à droite --- */
#single-domain-2 { 
  width: 90%; 
  max-width: 1100px; 
  margin: 40px auto; 
}

#single-domain-2 .sd2-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 20px;
}

#single-domain-2 .sd2-text {
  flex: 1;
  min-width: 260px;
}

#single-domain-2 .sd2-text h3 {
  margin: 0 0 10px 0;
  color: #1A73E8;
  font-size: 1.6rem;
}

#single-domain-2 .sd2-text p {
  margin: 0;
  line-height: 1.6;
  color: #222;
  text-align: left;
}

#single-domain-2 .sd2-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}

#single-domain-2 .sd2-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #1A73E8;
  display: block;
}

/* Responsive */
@media (max-width: 820px) {
  #single-domain-2 .sd2-inner {
    flex-direction: column;
    text-align: center;
  }
  
  #single-domain-2 .sd2-text p {
    text-align: center;
  }

  #single-domain-2 .sd2-image img {
    width: 205px;
    height: 205px;
  }
}

.formations-section {
  padding: 60px 20px;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.formations-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.formation-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: 0.3s;
}

.formation-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.formation-icon {
  font-size: 55px;
  color: #d4a056;
}

.formation-card h3 {
  font-size: 24px;
  margin: 20px 0;
  font-family: "Georgia", serif;
}

.formation-card p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.read-more {
  display: inline-block;
  font-size: 15px;
  color: #d4a056;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.read-more:hover {
  border-bottom: 1px solid #d4a056;
  padding-bottom: 3px;
}



.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

.main-title {
    font-family: "Georgia", serif;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.title-light {
    color: #000; /* Nos */
}

.title-gold {
    color: #d4a056; /* Formations (or élégant) */
}

.subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}


/* Images des domaines : affichage complet */
.sd-image img,
.sd2-image img,
.sd3-image img,
.sd4-image img {
    width: 100%;      /* remplit la largeur du conteneur */
    max-width: 400px; /* largeur max pour ne pas exploser la mise en page */
    height: auto;     /* conserve les proportions */
    border-radius: 10px; /* optionnel, juste un léger arrondi */
    display: block;
    margin: 0 auto;   /* centre l'image */
}

/* Conteneurs des domaines */
.sd-inner, .sd2-inner, .sd3-inner, .sd4-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
}

/* Texte */
.sd-text, .sd2-text, .sd3-text, .sd4-text {
    flex: 1;
    min-width: 280px;
}

/* Responsive : empile sur mobile */
@media (max-width: 820px) {
    .sd-inner, .sd2-inner, .sd3-inner, .sd4-inner {
        flex-direction: column;
        text-align: center;
    }

    .sd-text, .sd2-text, .sd3-text, .sd4-text {
        text-align: center;
    }

    .sd-image img,
    .sd2-image img,
    .sd3-image img,
    .sd4-image img {
        max-width: 250px;
    }
}


/* Import police gothique depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap');

.gothic-title {
  font-family: 'UnifrakturCook', cursive;
  font-size: 3rem;
  color: #00cc00; /* vert thème ONG */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4); /* effet ombre */
  letter-spacing: 2px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Effet hover */
.gothic-title:hover {
  color: #ff6600; /* change couleur au survol */
  transform: scale(1.1) rotate(-2deg); /* léger effet dynamique */
}



/* =========================================================
   HERO PRINCIPAL GAS
========================================================= */

.gas-main-hero,
.gas-main-hero * {
    box-sizing: border-box;
}


.gas-main-hero {
    position: relative;

    width: 100%;

    min-height: 760px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        url("./img/T2.jpg")
        center center / cover
        no-repeat;

    isolation: isolate;
}


/* =========================================================
   OVERLAY
========================================================= */

.gas-main-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(6, 24, 18, .94) 0%,
            rgba(6, 24, 18, .82) 37%,
            rgba(6, 24, 18, .50) 66%,
            rgba(6, 24, 18, .25) 100%
        );
}


/* =========================================================
   CONTENU
========================================================= */

.gas-main-hero-content {
    position: relative;

    width: min(92%, 1500px);

    margin: 0 auto;

    padding: 90px 0 120px;

    color: white;
}


/* =========================================================
   BADGE
========================================================= */

.gas-main-hero-badge {
    width: fit-content;

    max-width: 100%;

    margin-bottom: 32px;

    padding: 12px 22px;

    border: 1px solid rgba(255, 255, 255, .35);

    border-radius: 999px;

    background: rgba(255, 255, 255, .05);

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.7px;

    line-height: 1.4;

    backdrop-filter: blur(6px);
}


/* =========================================================
   TITRE
========================================================= */

.gas-main-hero-title {
    max-width: 1000px;

    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(58px, 6vw, 98px);

    font-weight: 700;

    line-height: .95;

    letter-spacing: -3.5px;

    text-align: left;
}


.gas-main-hero-title span {
    display: block;

    color: #e3b267;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.gas-main-hero-description {
    max-width: 810px;

    margin: 35px 0 0;

    color: rgba(255, 255, 255, .88);

    font-size: 19px;

    line-height: 1.75;

    text-align: left;
}


/* =========================================================
   BOUTONS
========================================================= */

.gas-main-hero-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 17px;

    margin-top: 38px;
}


.gas-main-hero-button {
    min-height: 58px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 0 29px;

    border-radius: 999px;

    color: white;

    font-size: 15px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.gas-main-hero-button-primary {
    background: #176a4a;

    border: 1px solid #176a4a;

    box-shadow:
        0 13px 30px rgba(0, 0, 0, .18);
}


.gas-main-hero-button-primary:hover {
    transform: translateY(-3px);

    background: #0e563b;

    border-color: #0e563b;
}


.gas-main-hero-button-secondary {
    background: rgba(255, 255, 255, .10);

    border: 1px solid rgba(255, 255, 255, .60);

    backdrop-filter: blur(7px);
}


.gas-main-hero-button-secondary:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, .20);

    border-color: white;
}


/* =========================================================
   STATISTIQUES
========================================================= */

.gas-main-hero-stats {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 60px;
}


.gas-main-hero-stat {
    display: flex;

    align-items: center;

    gap: 13px;
}


.gas-main-hero-stat strong {
    color: #e3b267;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 35px;

    line-height: 1;
}


.gas-main-hero-stat span {
    color: rgba(255, 255, 255, .75);

    font-size: 11px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.gas-main-hero-stat-line {
    width: 1px;

    height: 38px;

    background: rgba(255, 255, 255, .25);
}


/* =========================================================
   INDICATION SCROLL
========================================================= */

.gas-main-hero-scroll {
    position: absolute;

    right: 4%;
    bottom: 34px;

    display: flex;

    align-items: center;

    gap: 13px;

    color: rgba(255, 255, 255, .78);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-decoration: none;

    text-transform: uppercase;
}


.gas-main-hero-scroll i {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .4);

    border-radius: 50%;

    transition:
        transform .3s ease,
        background .3s ease;
}


.gas-main-hero-scroll:hover i {
    transform: translateY(5px);

    background: rgba(255, 255, 255, .12);
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1000px) {

    .gas-main-hero {
        min-height: 700px;
    }


    .gas-main-hero-content {
        padding-top: 80px;
    }


    .gas-main-hero-title {
        max-width: 850px;

        font-size: clamp(53px, 8vw, 78px);
    }


    .gas-main-hero-description {
        max-width: 720px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .gas-main-hero {
        min-height: auto;

        background-position: 58% center;
    }


    .gas-main-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(6, 24, 18, .84) 0%,
                rgba(6, 24, 18, .91) 55%,
                rgba(6, 24, 18, .97) 100%
            );
    }


    .gas-main-hero-content {
        width: calc(100% - 34px);

        padding: 70px 0 95px;
    }


    .gas-main-hero-badge {
        margin-bottom: 25px;

        padding: 10px 15px;

        font-size: 9px;

        letter-spacing: 1.6px;
    }


    .gas-main-hero-title {
        max-width: 100%;

        font-size: clamp(43px, 13vw, 61px);

        line-height: 1;

        letter-spacing: -2px;
    }


    .gas-main-hero-description {
        margin-top: 27px;

        font-size: 15px;

        line-height: 1.7;
    }


    .gas-main-hero-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        margin-top: 30px;
    }


    .gas-main-hero-button {
        width: 100%;

        min-height: 56px;

        padding: 0 20px;
    }


    .gas-main-hero-stats {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 10px;

        margin-top: 43px;
    }


    .gas-main-hero-stat {
        min-width: 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }


    .gas-main-hero-stat strong {
        font-size: 27px;
    }


    .gas-main-hero-stat span {
        font-size: 8px;
    }


    .gas-main-hero-stat-line {
        display: none;
    }


    .gas-main-hero-scroll {
        display: none;
    }

}


/* =========================================================
   TRÈS PETITS ÉCRANS
========================================================= */

@media (max-width: 380px) {

    .gas-main-hero-content {
        width: calc(100% - 26px);
    }


    .gas-main-hero-title {
        font-size: 39px;
    }


    .gas-main-hero-stats {
        grid-template-columns: 1fr 1fr;
    }

}
