.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

a.footer-link {
  color: #ffffff;
  text-decoration: none;
  border: none !important;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #e7e3ff !important;
}

.footer-separator {
  color: #ffffff93;
}

@media (max-width: 480px) {
  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-separator {
    display: none;
  }
} 