/* Footer styles */
.footer {
  background-color: white;
  border-top: 1px solid var(--border-light);
  padding: var(--space-3) 0;
  /*margin-top: var(--space-5);*/
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  transition: color var(--transition-medium);
}

.footer-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-copyright {
  color: var(--text-light);
  font-size: var(--font-size-sm);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}