﻿html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    position: relative;
    width: 100%;
    background-color: #f5efe5;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
	box-sizing: border-box;
}

a:link {
    color: #993300;
    text-decoration: none;
}
a:visited {
    color: #999900;
    text-decoration: none;
}
a:hover, a:active {
    color: #993300;
    text-decoration: none;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #993300;
}

p {
    margin-bottom: 20px;
}

.p-centered {
     width: 80%; /* Ou 90 %, 150 %, etc. */
    max-width: none; /* Supprime la limite */
	margin-bottom: 20px;
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    text-align: center;
    margin-left: auto; /* Centre le paragraphe */
    margin-right: auto;
}

@media (max-width: 768px) {
    .p-centered {
        font-size: 18px;
        width: 90%; /* Ajuste la largeur pour les petits écrans si nécessaire */
    }
}

ul {
    list-style-type: square;
    padding-left: 10px;
}

ul li {
    margin-left: -5px;
}

.star-list-unicode {
    list-style-type: none;
}

.star-list-unicode li::before {
    content: "★";
    margin-right: 5px;
    font-size: 16px;
}

.signature {
    font-family: "Henny Penny", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    color: #333;
}

h2 {
    font-family: "Arial Black";
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.2vw;
    line-height: 0.7em;
    font-size: 10vw;
    text-align: left;
	margin-left: -50px;
}

@media (max-width: 1200px) {
    h2 {
        font-size: 5vw;
    }
}

@media (max-width: 992px) {
    h2 {
        font-size: 4vw;
    }
}

h3 {
    position: relative;
    writing-mode: vertical-lr;
    font-family: "Arial Black", sans-serif;
    color: #ffffff;
    font-size: 150%;
    margin: 0;
    padding: 0;
    z-index: 2;
}

.h3-column h3 {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-align: end;
}

h4 {
    font-family: "Caveat", serif;
    font-size: 34px;
    font-optical-sizing: auto;
    font-weight: 704;
    font-style: normal;
    line-height: 1em;
    color: #132b40;
    z-index: 1;
    margin: 0;
	margin-bottom:10px;
}
.h4-blanc {
    color: white; /* Remplace la couleur par blanc */
}
	

/* Style spécifique pour le h4 dans .chapeau */
.chapeau h4 {
    width: 90%; /* Réduit la largeur à 80% */
    /*max-width: 900px; /* Optionnel : limite la largeur maximale pour éviter un texte trop étiré sur grands écrans */
    margin-left: auto; /* Centre le h4 */
    margin-right: auto;
    text-align: center; /* Assure que le texte reste centré à l’intérieur du h4 */
}

/* Remplacement des <br> dans .chapeau h4 */
.chapeau h4 span {
    display: block;
}

@media (max-width: 768px) {
    .chapeau h4 {
        width: 90%; /* Ajuste la largeur pour les petits écrans si nécessaire */
        font-size: 22px; /* Optionnel : réduit la taille de la police pour les petits écrans */
    }
}

h5 {
    color: #ffffff;
    font-family: "Montserrat", serif;
    font-size: 26px;
    line-height: 1em;
    margin: 0;
	margin-right:50px;
    padding: 0;
    transform: rotate(-90deg);
    transform-origin: right center;
    white-space: nowrap;
    text-align: right;
}

.h5-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    z-index: 3;
    padding: 0 30px;
}

/* Style spécifique pour le h5 dans .blocCoul2 */
.blocCoul2 h5 {
    position: relative; /* Permet des ajustements de position tout en restant dans le flux */
    left: -200px; /* Déplace 30px à gauche */
    top: 120px; /* Déplace 20px vers le bas */
	margin:0;
    /*margin-bottom: 20px; /* Ajoute un espacement en dessous pour éviter un chevauchement */
}

#global {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: visible;
}

.Haut {
    width: 100%;
    background: #132b40;
    margin: 0;
    min-height: 22vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.EnTete {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2vw 0;
}

.textRotate {
    float: left;
    color: #ffffff;
    font-size: 3vw;
    line-height: 1em;
    letter-spacing: 0.5vw;
    margin: 0;
    margin-right: -2vw;
    padding: 0;
    transform: rotate(-90deg);
}

/* Remplacement des <br> par des spans dans .Haut */
.textRotate span,
.EnTete h2 span {
    display: block;
}

@media (max-width: 1200px) {
    .textRotate {
        font-size: 1.8vw;
        letter-spacing: 0.4vw;
        margin-right: -1.5vw;
    }
}

@media (max-width: 992px) {
    .textRotate {
        font-size: 1.5vw;
        letter-spacing: 0.3vw;
        margin-right: -1vw;
    }
}

.logo {
    height: 9vw;
    width: 9vw;
    background-image: url(Logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 10vw;
    left: 7vw;
}

@media (max-width: 1200px) {
    .logo {
        height: 8vw;
        width: 8vw;
        top: 4vw;
        left: 4vw;
    }
}

@media (max-width: 992px) {
    .logo {
        height: 6vw;
        width: 6vw;
        top: 3vw;
        left: 3vw;
    }
}

.Appelaction {
    width: 12vw;
    min-width: 200px;
    background-color: #f28989;
    z-index: 5;
    position: fixed;
    top: 2vw;
    right: 2vw;
    padding: 0.5%;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none !important;
}

.Appelaction .calendly-inline-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0.5vw 1vw;
    background-color: #f28989;
    text-decoration: none;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.Appelaction .calendly-inline-link h4.h4-blanc {
    font-family: "Caveat", serif;
    font-size: 1.5vw; /* Remplace la taille précédente de .calendly-inline-link */
    font-weight: 704;
    font-style: normal;
    line-height: 1em;
    color: #ffffff !important; /* Hérité de .h4-blanc avec !important pour éviter conflits */
    margin: 0; /* Supprime les marges par défaut du h4 */
    padding: 0;
}

.Appelaction .calendly-inline-link h4.h4-blanc span {
    display: block;
    line-height: 1.2em; /* Garde un espacement raisonnable entre les lignes */
}

.Appelaction .calendly-inline-link:hover,
.Appelaction .calendly-inline-link:active,
.Appelaction .calendly-inline-link:visited {
    color: #ffffff !important;
    text-decoration: none;
    transform: scale(1.05);
    box-shadow: none !important;
}

@media (max-width: 1200px) {
    .Appelaction {
        width: 12vw;
        min-width: 180px;
        top: 1.5vw;
        right: 1.5vw;
    }
    .Appelaction .calendly-inline-link {
        padding: 0.4vw 0.8vw;
    }
    .Appelaction .calendly-inline-link h4.h4-blanc {
        font-size: 1.3vw; /* Ajusté pour correspondre à l’ancienne media query */
    }
}

@media (max-width: 992px) {
    .Appelaction {
        width: 10vw;
        min-width: 160px;
        top: 1vw;
        right: 1vw;
    }
    .Appelaction .calendly-inline-link {
        padding: 0.3vw 0.6vw;
    }
    .Appelaction .calendly-inline-link h4.h4-blanc {
        font-size: 1.2vw; /* Ajusté pour correspondre à l’ancienne media query */
    }
}

.texte {
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6em;
    text-align: left;
    width: 100%;
}

.texte p {
    margin-bottom: 10px;
}

.texteMini {
    flex: 1;
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    margin-left: 20px;
    text-align: left;
}

.container {
    width: 100%;
    flex: 1;
    position: relative;
    top: 0;
    left: 0;
}

.Sect2 {
    display: block;
    background-color: #132b40;
    width: 100%;
    margin-right: 0%;
    overflow: visible;
    height: auto;
    position: relative;
    display: flow-root; /* Ajout pour englober les enfants flottants, si nécessaire */
}

.chapeau {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    margin-top: -3%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding: 40px;
    background-color: #f5efe5;
    z-index: 5;
    min-height: 310px;
}

.block {
    flex: 1 1 0;
    min-width: 250px;
    padding: 25px 20px 50px 20px;
    margin: 0 10px;
    box-sizing: border-box;
    text-align: center;
    background-color: #da9aa0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.block-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
    align-items: stretch;
    overflow-x: auto;
}

.generic-wrapper {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
    align-items: stretch;
}

.blocCoul1 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding: 5% 5% 10% 15%;
    margin-bottom: -30px;
    background-color: #f28989;
    width: 70%;
    margin-left: -20%;
    z-index: 0;
}

.blocCoul1 .texte p {
    margin-bottom: 10px;
}

.blocCoul2 {
    display: flex;
    align-items: flex-start;
    padding: 5% 5% 5% 0;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    width: 70%;
    background-color: #132b40;
    z-index: 1;
    position: relative;
    column-count: 2;
}

.blocCoul2 .texte {
    margin-left: -130px;
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6em;
    text-align: left;
}

.blocCoul2 .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    break-inside: avoid;
}

.blocCoul2 .grid-item {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

.blocCoul2 .grid-item .number-circle {
    width: 40px;
    height: 40px;
    background-color: #F28989;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    font-family: "Montserrat", serif;
}

.blocCoul2 .grid-item .grid-title {
    font-family: "Montserrat", serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    color: #132b40;
    letter-spacing: 1px;
    line-height: normal;
}

.blocCoul2 .grid-item p {
    font-family: "Montserrat", serif;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
    color: #132b40;
}

/* S'assurer que .spirale-container et .grid-container suivent le même décalage */
.blocCoul2 .spirale-container,
.blocCoul2 .grid-container {
    margin-left: 0px; /* Même décalage que .texte */
}

/* Ajustements pour différentes résolutions */
@media (max-width: 1200px) {
    .blocCoul2 .texte,
    .blocCoul2 .spirale-container,
    .blocCoul2 .grid-container {
        margin-left: -80px; /* Réduction du décalage pour écrans moyens */
    }
}

@media (max-width: 992px) {
    .blocCoul2 .texte,
    .blocCoul2 .spirale-container,
    .blocCoul2 .grid-container {
        margin-left: -90px; /* Réduction pour petits écrans d'ordinateur */
    }
}

.blocCoul2 .grid-item:nth-child(1) { background-color: #83d5d3; }
.blocCoul2 .grid-item:nth-child(2) { background-color: #83d5d3; }
.blocCoul2 .grid-item:nth-child(3) { background-color: #83d5d3; }
.blocCoul2 .grid-item:nth-child(4) { background-color: #83d5d3; }
.blocCoul2 .grid-item:nth-child(5) { background-color: #83d5d3; }
.blocCoul2 .grid-item:nth-child(6) { background-color: #83d5d3; }

@media (max-width: 768px) {
    .blocCoul2 .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }
}

.spirale-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
	break-inside: avoid;
}

.spirale-container h4 {
    margin-top: 20px; /* Espace avant, équivalent à une ligne */
    margin-bottom: 20px; /* Espace après, équivalent à une ligne */
}
.schema-image {
    width: 20vw;
    max-width: 400px;
    height: auto;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .blocCoul2 .texte {
        margin-left: 4%;
    }
    .schema-image {
        width: 18vw;
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .blocCoul2 .texte {
        margin-left: 3%;
    }
    .schema-image {
        width: 16vw;
        max-width: 300px;
    }
}

.blocCoul3 {
    display: flex;
    align-items: flex-start;
    width: 60%;
    justify-content: flex-start;
    background-color: #48B3A4;
    padding: 5% 5% 15% 11%;
    margin: -3% 0 0 -20%;
    color: #fff;
    z-index: 3;
    margin-bottom: 0;
}

.blocCoul3 .texte {
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6em;
    margin-left: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step img {
    margin-bottom: 10px;
}

.step p {
    margin: 0;
}

@media (max-width: 768px) {
    .blocCoul3 {
        width: 90%;
        padding: 5%;
        margin: 0;
    }
    .texte {
        margin-left: 0;
        gap: 20px;
    }
    .step img {
        width: 80px;
        height: 80px;
    }
    .step p {
        font-size: 18px;
    }
}

.blocCoul4 {
    position: relative;
    top: -15px;
    width: 40%;
    height: 300px;
    margin-top: -30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    background-color: #da9aa0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 5%;
    z-index: 5;
    gap: 30px;
}

.photo-temoignage {
    width: 30vw;
    max-width: 500px;
    height: auto;
    aspect-ratio: 500 / 357;
    background-image: url(Ginko.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .photo-temoignage {
        width: 25vw;
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .photo-temoignage {
        width: 20vw;
        max-width: 300px;
    }
}

.blocCoul4 h5 {
    color: #FFFFFF;
    font-family: "Montserrat", serif;
    font-size: 26px;
    line-height: 1em;
    padding: 0;
    margin-right: 30px;
}

.show-all-testimonials {
    color: #132B40;
    font-family: "Montserrat", serif;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    padding: 0;
    background-color: transparent;
    border: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.show-all-testimonials h4 {
    font-size: 180%;
    color: #132B40;
    margin: 0 0 10px 0;
    line-height: 1em;
    transition: color 0.3s ease;
}

.blocCoul4 .show-all-testimonials:hover {
    transform: scale(1.05);
}

.blocCoul4 .show-all-testimonials:hover h4 {
    color: #FFFFFF;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .blocCoul4 {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .blocCoul4 {
        gap: 15px;
    }
}

.blocCoul5 {
      display: flex;
    align-items: flex-start;
    background-color: #f28989;
    padding: 3% 0;
    position: relative;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -2%;
    z-index: 0;
	 overflow: visible; /* Permet au <h5> de dépasser les limites du conteneur */
}

/* Nouvelle media query pour 1200px à 1600px (couvre ~1400px) */
@media (max-width: 1600px) and (min-width: 1201px) {
    .blocCoul5 {
         width: 80%;
    }
}
.h5-blocCoul5 {
      position: relative;
    left: -100px; /* Réduit le décalage à gauche */
    top: 20px;
    margin: 0;
}

/* Nouvelle media query pour 1200px à 1600px (couvre ~1400px) */
@media (max-width: 1600px) and (min-width: 1201px) {
    .h5-blocCoul5 {
        left: -100px; /* Décalage plus important vers la gauche à ~1400px */
    }
}

@media (max-width: 1200px) {
    .h5-blocCoul5 {
        left: -150px; /* Réduit le décalage à gauche pour écrans moyens */
        top: 100px;
    }
    }

@media (max-width: 992px) {
    .h5-blocCoul5 {
        left: -100px; /* Réduit encore plus pour petits écrans */
        top: 80px;
    }
    }

@media (max-width: 768px) {
    .blocCoul5 {
        flex-direction: column; /* Empile les éléments sur mobile */
        padding: 5%;
    }
    .h5-blocCoul5 {
        position: static; /* Revient à un positionnement normal sur mobile */
        transform: none; /* Supprime la rotation */
        margin-bottom: 20px; /* Ajoute un espacement en dessous */
        text-align: center;
    }
   }

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.faq-block {
    width: 40%;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    min-height: 200px;
    overflow: hidden;
    margin-bottom: 10px;
    transform: translateX(-10px);
}

.short-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.long-text {
    font-size: 16px;
    line-height: 1.5;
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

.faq-block:hover .long-text {
    max-height: 500px;
    opacity: 1;
}

.faq-block:nth-child(1) { background-color: #952684; transform: translateX(-200px); }
.faq-block:nth-child(2) { background-color: #612e7d; transform: translateX(-100px); }
.faq-block:nth-child(3) { background-color: #3b0e4f; transform: translateX(0px); }
.faq-block:nth-child(4) { background-color: #d82a71; transform: translateX(0px); }
.faq-block:nth-child(5) { background-color: #f09a5f; transform: translateX(0px); }
.faq-block:nth-child(6) { background-color: #d7745f; transform: translateX(0px); }

.blocCoul6 {
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 5%;
    margin-left: 2%;
    margin-top: -2%;
    width: 60%;
    background-color: #F5EFE5;
    margin-left: -20%;
    clear: right;
    z-index: 2;
    position: relative;
}

.blocCoul6 .calendly-wrapper {
    width: 1200px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.blocCoul6 .custom-calendly-widget {
    width: 1000px !important;
    height: 700px;
    max-width: none !important;
    position: relative;
    left: 230px;
    background: transparent !important;
}

.blocCoul6 .custom-calendly-widget iframe {
    width: 1000px !important;
    height: 700px !important;
    position: relative;
    left: 0;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .blocCoul6 .calendly-wrapper {
        width: 90%;
        max-width: 400px;
    }
    .blocCoul6 .custom-calendly-widget {
        left: -300px;
    }
}

.Mentions {
    padding: 5%;
    width: 100%;
    color: #fff;
}

.blocCPub1 {
    width: 80%;
    max-width: 1000px;
    margin: 0; /* Supprime le centrage automatique */
    margin-left: -10%; /* Colle .blocCPub1 à .BlocFond2 */
	 margin-top: -30px; /* Remonte .blocCPub1 */
    padding: 2% 5% 5% 5%;
    background-color: #da9aa0;
    color: #ffffff;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.blocCPub1 .texte {
    flex: 1;
    margin-left: 20px;
}

@media (max-width: 1200px) {
    .blocCPub1 {
        width: 70%;
    }
}

@media (max-width: 992px) {
    .blocCPub1 {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .blocFond2-wrapper {
        flex-direction: column;
    }
    .BlocFond2 {
        flex: 0 0 auto;
        width: 100%;
        min-height: 300px;
    }
    .blocCPub1 {
        width: 90%;
        margin: 0 auto;
        top: 0;
        left: 0;
    }
}

.content-wrapperQUI {
     display: flex;
    width: 100%;
    justify-content: flex-start; /* Aligne les éléments à gauche */
    align-items: flex-start;
    gap: 20px; /* Ajoute un espacement contrôlé entre <h5> et .texte */
}

.content-wrapperQUI .texte {
    flex-grow: 1; /* Permet à .texte de prendre tout l’espace disponible */
    width: auto; /* Remplace width: 100% pour permettre une croissance naturelle */
    max-width: none; /* Supprime toute limitation de largeur */
}

.content-wrapperQUI h5 {
    margin: 0; /* Supprime toute marge indésirable */
    padding: 0;
	  margin-left: -50px; /* Décalage vers la gauche */
}

.Anne-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 100px;
    margin-bottom: 30px;
    width: 100%;
}

.Anne2 {
    background-image: url(Anne2.jpg);
    background-repeat: no-repeat;
    background-size: cover; /* S'assure que l'image couvre l'espace */
    width: 20vw; /* Largeur proportionnelle */
    max-width: 400px; /* Largeur maximale */
    height: auto; /* Hauteur proportionnelle */
    aspect-ratio: 400 / 329; /* Maintient les proportions */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.Anne {
    background-image: url(Anne.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 19vw; /* Largeur proportionnelle */
    max-width: 378px; /* Largeur maximale */
    height: auto; /* Hauteur proportionnelle */
    aspect-ratio: 378 / 400; /* Maintient les proportions */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Ajustements pour différentes résolutions */
@media (max-width: 1200px) {
    .Anne2 {
        width: 14vw;
        max-width: 250px;
    }
    .Anne {
        width: 14vw;
        max-width: 230px;
    }
    .Anne-container {
        gap: 80px; /* Réduit l'espacement entre les images */
    }
}

@media (max-width: 992px) {
    .Anne2 {
        width: 12vw;
        max-width: 300px;
    }
    .Anne {
        width: 12vw;
        max-width: 280px;
    }
    .Anne-container {
        gap: 60px;
    }
}

.read-more-btn {
    background-color: #f28989;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-family: "Montserrat", serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
	margin-bottom: 10px:
    width: auto;
    display: inline-block;
}

.read-more-btn:hover {
    background-color: #e07b7b;
}

.hidden-content {
    display: none;
    margin-top: 20px;
}

.hidden-content.visible {
    display: block;
}

.BlocFond1 {
    background-image: url(7.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 20%;
    height: auto;
}

@media (max-width: 768px) {
    .generic-wrapper {
        flex-direction: column;
    }
    .blocCoul1 {
        width: 100%;
        margin-left: 0;
    }
    .BlocFond1 {
        width: 100%;
        height: 300px;
    }
}

.blocFond2-wrapper {
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    min-height: 600px; /* Hauteur minimale pour s’assurer que .BlocFond2 est visible */
	gap: 0; /* Supprime tout espace indésirable entre les enfants */
}

@media (max-width: 1200px) {
    .blocCPub1 {
        width: 85%;
        max-width: 800px;
        margin-left: 0;
    }
    .BlocFond2 {
        flex: 0 0 350px;
    }
}

@media (max-width: 992px) {
    .blocCPub1 {
        width: 90%;
        max-width: 700px;
        margin-left: 0;
    }
    .BlocFond2 {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .blocFond2-wrapper {
        flex-direction: column;
    }
    .BlocFond2 {
        flex: 0 0 auto;
        width: 100%;
        min-height: 300px;
    }
    .blocCPub1 {
        width: 90%;
        max-width: none;
        margin: 0 auto; /* Rétablit le centrage sur mobile */
    }
}
@media (max-width: 768px) {
    .blocFond2-wrapper {
        flex-direction: column;
    }
    .BlocFond2 {
        width: 100%;
        min-height: 300px;
    }
    .blocCPub1 {
        width: 90%;
    }
    .texte {
        margin-left: 10px;
    }
}

.BlocFond2 {
    flex: 0 0 535px;
    background-image: url(6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: auto;
    min-height: 100%;
	margin-left:-30px;
}

.blocFond3 {
    background-image: url(8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 356px;
    height: auto;
    margin-top: -5%;
}

@media (max-width: 768px) {
    .generic-wrapper {
        flex-direction: column;
    }
    .blocCoul3 {
        width: 100%;
        margin-left: 0;
        padding: 5%;
    }
    .blocFond3 {
        width: 100%;
        height: 300px;
    }
}

.blocFond4 {
    float: left;
    background-image: url(9.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 444px;
    height: 800px;
    margin-top: 20px;
    z-index: 0;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Augmenté pour être sûr qu’elle est au-dessus */
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-content .temoignage {
    margin-bottom: 20px;
    padding: 50px;
    border-bottom: 1px solid #eee;
}

.popup-content .temoignage:last-child {
    border-bottom: none;
}

.popup-content p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #333;
}

.popup-content img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2em;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #007bff;
}

.temoignage {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.temoignage img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.person-image {
    width: 100px;
    height: 100px;
}

.google-logo {
    width: 36px;
    height: 36px;
}

.temoignage p {
    text-align: left;
    margin-top: 10px;
    clear: both;
}

.temoignage-A { background-color: #e9f0ec; }
.temoignage-B { background-color: #e5d6be; }
.temoignage-C { background-color: #bdb9b4; }
.temoignage-D { background-color: #d0b0ff; }
.temoignage-E { background-color: #b0e0ff; }
.temoignage-F { background-color: #ffffb0; }
.temoignage-G { background-color: #ffd0b0; }
.temoignage-H { background-color: #b0e0ff; }
.temoignage-I { background-color: #c1bca9; }
.temoignage-J { background-color: #c7e6be; }

/* Responsive */
@media (max-width: 768px) {
    .blocCoul4 {
        width: 90%;
    }
    .temoignage {
        width: 100%;
    }
    .temoignage img {
        margin-right: 5px;
    }
    .person-image, .google-logo {
        width: 30px;
        height: auto;
    }
    .temoignage p {
        font-size: 1em;
        padding: 10px;
    }
    .popup-content {
        max-width: 90%;
        max-height: 90%;
    }
}
