    body {
      background-color: #fff; /* Jaune clair */
      margin: 0;
      padding: 0;
    }

    /*Début Navbar sticky (collante au scroll) */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #E91E63; /* même fond que le body */
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    .nav-link {
      color: white;
    }

    .active {
      color : white !important;
      border-bottom: 4px solid white;
    }
/*Fin navbar*/
/*Début header*/
.image-container {
  height: 800px; /* ajuste à ta convenance */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
}
.ColRight {
  background-color: #0d47a1;
}
.blockquoteSectionImgAcceuil {
  margin-top: 5%;
  color: #FFC50A;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.5;
  font-style: italic;

  animation: slideInFromRight 1s ease-out forwards;
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.TitreblockquoteSectionImgAcceuil {
  font-size: 3.2rem;
}

.QuoteDivTitreImg {
  border-top: 5px solid #E91E63;
}

/*Fin header*/
/*Début contenu main*/
main {
  font-size: 20px;
  text-align: justify;
}
.TitreSectionMain{
    color : #E91E63;
    text-align: center;
}
.SectionParagraph {
  padding-left: 40px;
}
.TitreSectionGroupedelecture{
    color : #E91E63;
}
/*Fin contenu main*/
/*Début contenu footer*/
.SectionFooter {
  background: #E91E63;
}

.TitreSectionFooter {
  color: white;
}

.FooterCopy {
  background: #D81B60;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
   /*Fin contenu footer*/