footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 50px;
  margin-right: 10px;
}
.footer-links a {
  display: block;
  color: #ccc;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact p {
  margin: 5px 0;
}
.footer-qr img {
  width: 80px;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}