<style>

footer {
	background-color: #F6CBB3;
	font-size: 0.8em;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #FEF8EC;
}

h1, h2 { color: #854B59; text-align: center; }
h2{text-align: left;}
h3 {color:#854B59;}
h1 { font-size: 2.2em; margin-top: 1.5em; }
h2 { margin-top: 1.2em; }
p, ul { margin-bottom: 1em; color: #854B59;}
ul { list-style: disc;   padding: 0; }
hr { border: 0; border-top: 1px solid #ddd; margin: 2em 0; }
ul li { margin-bottom: 0.5em; list-style-type: disc;}
 
 
/* Container en Flexbox */
#container {
  display: flex;
  gap: 20px; /* optionnel : espace entre texte et image */
  align-items: center; /* centre verticalement */
}

/* Texte à gauche */
#box1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centre le contenu interne */
}

/* Image à droite */
#box2 {
  max-width: 30%;
  display: flex;
  flex-direction: column; /* empile image + bouton */
  align-items: stretch;   /* pleine largeur */
}

#box2 img {
  width: 100%; /* prend tout le conteneur #box2 */
  height: auto; /* garde les proportions */

	border-radius: 20px 20px 0 0;
}

 section { 
  max-width: 1200px;
  margin: 20 auto;
  line-height: 1.6;
  border : 1px;
}

.sectionPremiere{
  margin: 0 auto;
}

.sectionSeconde{
  margin: 1em auto;
}
 
.divbtn {
  width: 100%;
  margin-top: 0;
}


.btn {
  display: block;
  width: 100%; /* même largeur que l'image */
  padding: 10px;
  font-size: 1.2em;
  text-align: center;
  text-decoration: none;
  border-radius: 0 0 20px 20px;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  .btn {
    display: block;   /* reste en dessous */
    width: 100%;      /* même largeur que l’image */
    font-size: 1.5em; /* tu peux garder ça */
  }
}
.monimg{
	width:1.2em;
	height:1em
}
 
</style>