
footer {
  background-color: #f8f8f8;
  padding: 25px 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #e0e0e0;
  font-size: 1rem;
  color: #555;
  border-top: 1px solid #e5e5e5;
  flex-shrink: 0;
  padding: 25px 0;
}

footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

footer .footer-links a {
  text-decoration: none;
  color: #0073e6;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}

footer .footer-links a:hover {
  color: #005bb5;
  transform: translateY(-2px);
}


@media (max-width: 600px) {
  footer .footer-content {
    gap: 8px;
  }
  footer .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
