.footer {
  background-color: rgb(12, 12, 43);
  color: aliceblue;
  padding: 60px 20px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h3, .footer-contact h3 {
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-socials a img {
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials a img:hover {
  transform: scale(1.2);
  filter: brightness(1.3) drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 14px;
 
}