/* Réinitialisation des marges et paddings */
body,
h1,
p {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Styles pour le header */
header {
  background-color: #f5f5f5;
  padding: 20px 0;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #333;
}

/* Styles pour les sections */
main {
  padding: 40px;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e87cc;
}

/* Styles pour les coordonnées */
.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Styles pour la localisation */
.map img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
