.footer {
  background: #222;
  color: #eee;
  padding: 40px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #e63946;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.footer p, 
.footer a {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.socials {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.socials img {
  width: 28px;
  height: 28px;
  transition: 0.3s;
}

.socials img:hover {
  filter: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}
