.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-links a {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #222222;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-links a:hover,
.contact-links a.active {
  background-color: #f08200;
  color: white;
}
