/* -------------------
   Site Footer
------------------- */
.site-footer {
  background: #111;
  color: #fff;
  margin: 2.5rem -1.25rem -1.25rem;
  padding: 20px 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: #28a745;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-footer a:hover {
  opacity: 0.7;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
}

.footer-menu li a:hover {
  color: #28a745;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }
  .footer-menu {
    flex-direction: column;
    gap: 5px;
  }
}