.footer {
  border-top: 2px solid #35687B;
  padding: 20px 0;
  font-family: 'Edosz', Verdana, Arial, sans-serif;
  color: #333;
  position: relative; /* bien garder relative pour rester dans le flux */
  z-index: 10;
  width: 100%; /* s'assurer qu'il prenne toute la largeur */
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.infopratiques,
.footer-links,
.contact {
  display: flex;
  flex-direction: column;
  margin: 10px;
  flex: 1;
  min-width: 200px;
  padding: 10px;
  box-sizing: border-box;
}

.infopratiques a,
.footer-links a,
.contact a {
  text-decoration: none;
  color: #333;
  margin-bottom: 8px;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.infopratiques a:hover,
.footer-links a:hover,
.contact a:hover {
  color: #35687B;
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.facebook
{
	width: 20px;
	height: auto;
}


.footer p
{
  margin-bottom: 15px;
  color: #35687B;
  font-size: 30px;
}

.contact-section {
  background-color: white;
  max-width: 400px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-family: 'Edosz', Verdana, sans-serif;
  color: #35687B;
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #35687B;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 2px solid #35687B;
  border-radius: 8px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  resize: vertical;
}

.contact-form button {
  background-color: #35687B;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #2a5365;
  transform: translateY(-2px);
}


.contact-socials {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 10px;
}

.contact-socials img {
  width: 28px;
  height: 28px;
  transition: filter 0.3s ease;
  border-radius: 10px;
}

.contact-socials img:hover {
  filter: none;
}

