
body {
  background-color: #f0f0f0; /* Gris clair */
  margin: 0;
  font-family: 'avenir-lt-w01_35-light1475496, sans-serif';
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-family: 'Raleway', sans-serif;
}

h3 {
  font-family: 'Raleway', sans-serif;
}

img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Information and Image */
.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 2rem;
}

.contact-details {
  flex: 1;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}


.contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-image img {
  width: 100%;
  height: auto;
  max-width: 70%; /* Réduit la taille de l'image */
  border-radius: 8px;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-image img {
    max-width: 90%;
  }

  .contact-details {
    padding: 1rem;
  }
}

