footer {
  background-color: #f8f8f8;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-family: Arial, sans-serif;
  margin-top: 50px; /* ⇽ plus grand espace avant le footer */
}


.footer-container {
  
  margin: 0 auto;
  
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .pageActive {
  color: #007bff;
  text-decoration: underline;
}

footer p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
