html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { /* ou #content, .container principal des pages entreprises */
  flex: 1;
}

footer {
  flex-shrink: 0; /* Empêche le rétrécissement */
  /* Vos styles existants : background, padding, etc. */
}