.footer {
  margin-top: 60px;
  padding: 30px 20px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #6b7280;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #2563eb;
}

.footer-links a:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: #9ca3af;
}