.footer-contact-link {
  color: var(--color-neutral-100);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--color-accent);
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 2rem;
}

.footer-left {
  max-width: 300px;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  color: #d0eaff;
  text-decoration: none;
  font-weight: 400;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.footer-logos img {
  max-height: 60px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-logos img {
  max-height: 60px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-links a {
  color: #c0d3e0; /* Soft neutral blue, tweak if needed */
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}
.footer-logos img {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 6px;
  background-color: white; /* acts as a white border */
}
