/* Footer Logo Styles */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: none;
  height: clamp(60px, 7.5vw, 100px);
  object-fit: contain;
  object-position: center;
  transition: transform 0.2s ease-in-out;
}

.footer-logo:hover {
  transform: scale(1.03);
}
