 .site-footer {
  background: rgba(20,30,40,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 1.5rem 0 1.2rem 0;
  margin-top: 0;
  width: 100vw;
  box-shadow: 0 -2px 8px rgba(35,43,121,0.10);
  font-size: 1rem;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer a:hover {
  color: #ffd700;
  transform: translateX(3px);
}
.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
.site-footer__column {
  min-width: 180px;
  color: #fff;
  opacity: 0.95;
}
.site-footer__copyright {
  text-align: center;
  color: #fff;
  opacity: 0.8;
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .site-footer__grid {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
}
