.footer {
  background-color: #f8f9fa;
  padding: 20px;
  width: 100%;
}

.footer__bottom {
  display: flex;
  justify-content: flex-end; /* Alignement à droite sur desktop */
  font-size: 14px;
  color: #666;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__copyright {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .footer__bottom {
    justify-content: center; /* Centré sur mobile */
    text-align: center;
  }
}

/* Assurer que le footer reste toujours en bas de page même si le contenu est court */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
