footer {
  background-color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* ✅ allow wrapping on small screens */
  white-space: nowrap;
  left: 0;
  right: 0;
  color: #32435F;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.footer-content img {
  margin-right: 6px;
  height: 70px;
}

.footer_contact-info p,
.social-links p {
  font-size: 1rem;
  margin: 2px 0;
  color: #32435F;
}

.footer_contact-info {
  text-align: left;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px; /* spacing between text and icon */
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-links p {
  font-size: 17px;
  margin: 0;
  white-space: nowrap;
}

.social-links a img {
  height: 30px;
  width: 30px;
  transition: transform 0.3s ease;
}

.social-links a img:hover {
  transform: scale(1.1);
}

/* ✅ Mobile still stacks footer items, but keeps text and icon in same row */
@media (max-width: 640px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_contact-info {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

