.site-footer {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  margin-left: 1rem;
  text-decoration: none;
  color: #0057ff;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}


/* Responsive footer */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 1rem;
  }
}