.site-footer {
  text-align: center;
  padding: 3rem 0;
  background: #e0e6ed;
  margin-top: 3rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.2s;
}
.footer-btn:hover {
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.footer-legal {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.footer-legal a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 8px;
}
.footer-legal a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.copyright {
  font-size: 0.9rem;
  color: #666;
}
