.footer {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  padding: 1rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.footer-text {
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  text-decoration: none;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links li a:hover {
  color: #1d4ed8; /* Blue on hover */
}
