body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1b140c;/* couleur texte foncé */
    background-color: #ecefe8;/* couleur fond */
    margin: 0;
    padding: 0;
}

.banner {
    background-color: #4f623c ; /* Couleur du bandeau ex #311a12*/
    color: #ecefe8;/* texte clair */
    text-align: center;
    padding: 5px;
    font-size: 2em;
}

.banner p {
    margin: 0;
    padding: 0px;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.menu ul li {
    color:#ecefe8;
    display: flex;/*  inline */
    padding: 0;
    margin: 5px;
}

.menu a {
    color: #ecefe8; /* Couleur des liens */
    text-decoration: none;
}

.menu a:hover {
    color: #ffffff; /* Couleur au survol */
}

.menu a:visited {
    color: #808080; /* Couleur des liens visités */
}

nav {    
    background-color: #4f623c; /* ex #311a12*/
    padding: 1rem;
    position: sticky;
    top: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;/* ajout */
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #ecefe8;
    text-decoration: none;
    font-weight: bold;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1 {    
    font-weight: bold; /* Ou utilisez font-weight: 700; */
    font-size: 1.8em;
        }
    
h2 {
    font-size: 1.3em;
    }
    
h3 {
    font-size: 1em;
 	text-decoration: underline;
    }

h4 {
    font-size: 1em;
	line-height: 1.4;
   	}

.responsive-image {
    max-width: 100%;
    height: auto;
    padding-top : 0;
    /*padding-right : 5px;
    padding-bottom : 5px;
    padding-left : 5px;*/
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.right-image {
    max-width: 100%; /* L'image ne dÃ©passera jamais la largeur de son conteneur */
    height: auto;
    margin-left: 1%; /* Alignement Ã  droite */
	padding-top: 5px;
	float: right;
	}

.left-image {
    max-width: 100%; /* L'image ne dÃ©passera jamais la largeur de son conteneur */
    height: auto;
    margin-right: 1%; /* Alignement Ã  gauche */
	padding-top: 5px;
	float: left;
}


footer {
    background-color: #4f623c;/* ex #311a12*/
    color: #ecefe8;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 10px;
    width: 100%;    
}

footer p {
    margin: 0;
    padding: 0px;
}

/* Style de base pour tous les liens */
a {
  color: #1b140c;
  text-decoration: underline;
}

/* Liens non visités */
a:link {
  color: ##1b140c;
}

/* Liens visités */
a:visited {
  color: ##1b140c;
}

/* Liens survolés, focus, et actifs */
a:hover, a:focus, a:active {
  color: #1d4ed8;
  text-decoration: none;
}

@media (max-width: 768px) {
  .testimonial {
    flex-basis: 100%;
  } */

/* Page contact */
/*.contact-table {
  float: left;
}*/
