footer {
  background-color: #fff;
  color: #000;
  padding: 20px 0;
  width: 100%;
  bottom: 0;
  position: static;
  left: 0;
  z-index: 1000; /* Ensure footer stays above other content */
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  width: 50px;
  margin-right: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  text-decoration: none;
  color: #000;
}

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

.footer-social a {
  margin: 0 10px;
}

.social-icon {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #000;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-logo,
  .footer-links,
  .footer-social {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=footer.css.map */