.site-footer {
  background: linear-gradient(135deg, #0d2d44 0%, #1a5276 100%);
  color: rgba(255,255,255,0.75);
  padding: 28px 0 20px;
  margin-top: 40px;
}
.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
}
.site-footer-copy {
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.site-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.site-footer-links a:hover {
  color: #fff;
}

@media (max-width: 576px) {
  .site-footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .site-footer-links {
    justify-content: center;
    gap: 14px;
  }
}
