    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: #FFC50A; /* 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: white;
  text-shadow: -2px -2px 8px rgba(128, 128, 128, 1);
  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 rgb(255, 197, 10);
}

/*Fin header*/
/*Début contenu main*/
main {
  font-size: 20px;
  text-align: justify;
}
.TitreSectionMain{
    color : #FFC50A;
    text-align: center;
    font-weight: bold;
}
/*Fin contenu main*/
/*Début contenu footer*/
   footer{
    background: #FFC50A;
   }
   .FooterCopy {
      background: #f5bd0c;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 2;
   }
    /*Fin contenu footer*/