/* Apply this to your body or a wrapper if you have one */


.content {
  flex: 1;
}

/* Footer that stays at the bottom of the content */
.site-footer {
  height: 200px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #555;
  font-size: 0.95em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
}
