body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #e8f5e9; /* Vert pâle */
}
header {
  background-color: #43a047; /* Vert */
  color: white;
  padding: 10px 0;
  text-align: center;
}
header .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .title h1 {
  margin: 0;
  font-size: 1.8em;
}
header .phone {
  font-weight: bold;
  font-size: 1.2em;
}
nav {
  width: 100%;
  float: none;
  padding: 0;
  max-width: max-content;
  display: flex;
  margin: 0 auto;
}
nav button {
  display: block;
  width: 100%;
  background-color: #66bb6a; /* Vert plus foncé */
  border: 2px solid #43a047;
  color: white;
  padding: 10px 20px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}
nav button:hover {
  background-color: #43a047;
}
.main-image {
  width: 400px;
  height: 400px;
  display: block;
  margin: 20px auto;
}
.intro {
  margin: 2em auto;
  padding: 0;
  display: flex;
  align-items: center;
  max-width: max-content;
}
.intro-text {
  max-width: 600px;
  padding: 20px;
}
.map {
  margin: 20px 0;
}
footer {
  background-color: #43a047;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
footer div {
  display: flex;
  flex-direction: column;
}
footer a {
  color: white;
  text-decoration: none
}
header .phone a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 5px;
  background: #FF0000;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
}
header .phone a span {
  font-size: 34px;
  line-height: 1;
}
footer div strong:last-child {
  border-radius: 100px;
  background: #FF0000;
  max-width: 100%;
  margin: 0 auto;
  padding: 5px 10px;
}
.mail-contact {
  background: #43a047;
  position: sticky;
  bottom: 0;
  padding: 15px;
}
.mail-contact a {
  display: flex;
  background: #FF0000;
  color: white;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 100px;
  max-width: max-content;
  margin: 0 auto;
  padding: 10px;
  font-size: 20px;
  font-weight: 800;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  nav {
    width: 100%;
    float: none;
    display: flex;
    justify-content: center;
  }
  nav button {
    width: auto;
    margin: 5px;
  }
  .main-image {
    width: 100%;
    height: auto;
  }
  .intro {
        margin: 0;
        flex-direction: column;
  }
  .fixed_phone {
    position: fixed;
    background: #000;
    top: 0;
    padding: 5px 0 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  header .title h1 {
    margin: 0;
    display: inline-block;
    font-size: 1.5em;
    line-height: 1;
  }
  nav {
    margin: 95px auto 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  footer div {
    flex-direction: column
  }
  footer div strong:last-child {
    border-radius: 100px;
    background: #FF0000;
    max-width: 100%;
    margin: 0 auto;
    padding: 5px 10px;
  }
}