* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  background-color: #eef5f9; /* Couleur de fond modifiée */
}
.banner {
  background: url('couverture.jpg') no-repeat center center/cover;
  width: 100%;
  height: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-title-container {
  background-color: rgba(0, 0, 0, 0.7); /* Pavé noir avec transparence */
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
}
.banner-title {
  color: white;
  font-size: 2.5em;
  animation: blink 1s infinite;
  margin-bottom: 5px;
}
.banner-phone {
  color: white;
  font-size: 1.2em;
  font-weight: bold;
}
/* Effet de clignotement */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.container {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}
nav {
  background-color: #005e7a; /* Changement de couleur de fond pour le menu */
  color: #fff;
  padding: 10px;
  text-align: center;
}
nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}
footer {
  background-color: #005e7a; /* Changement de couleur de fond pour le pied de page */
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
.bottom-banner {
  background: url('toitureprocouverture.jpg') no-repeat center center/cover;
  width: 100%;
  height: 150px;
}
.content_temp {
  display: flex;
  gap: 3em;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
.content_temp address,
address {
  display: flex;
  flex-direction: column;
  gap: 10px;
    border: solid 1px;
    padding: 1em
}
p {
    margin-bottom: 20px
}
@media (max-width: 768px) {
  .banner {
    height: 150px;
  }
  .banner-title {
    font-size: 2em;
  }
  .banner-phone {
    font-size: 1em;
  }
  .bottom-banner {
    height: 100px;
  }
}