html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

footer {
  background-color: #f6f6f4;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ccc;
  margin-top: auto;
}

.footer-links,
.footer-locale,
.footer-social {
  margin: 10px 0;
}

footer a {
  text-decoration: none;
  color: #333;
  margin: 0 8px;
  transition: color 0.3s;
}

footer a:hover {
  color: #007bff;
}

.footer-social a {
  font-size: 16px;
  margin: 0 6px;
}

.footer-locale a.active {
  font-weight: bold;
  text-decoration: underline;
}
.footer-wrapper {
    flex: 1;
}
.footer-copyright {
  color: #333;
  font-size: x-small;
} 