.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  fill: #ffffff; /* or use 'currentColor' for theme control */
}

.site-footer {
  background: #fff;
  color: #111;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo-column {
  flex: 1 1 100%;
  text-align: center;
}

.footer-logo {
  max-width: 25vw;
  margin-bottom: 10px;
}

.footer-contact {
  font-size: 2rem;
  color: #111;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.footer-column {
  flex: 1 1 150px;
  min-width: 120px;
  margin-bottom: 20px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.4rem;
  color: #12d0ff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #585a5b;
  font-family: 'Antonio', 'Roboto Condensed', 'Arial Narrow', 'Helvetica Neue Condensed', sans-serif;
  text-decoration: none;
  display: block;
  margin: 4px 0;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-logo {
    max-width: 40vw;
  }
}
