/* Footer */
footer {
  background-color: var(--background-white);
  text-align: center;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

footer a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-blue-dark);
}
