footer {
  position: relative;
}

.site-footer {
  background-color: #0d6efd;
  color: white;
  padding: 40px 0;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

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

.footer-logo a img {
  width: 10rem;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icons a i {
  font-size: 1.8rem;
  color: white;
  transition: opacity 0.3s ease;
}

.social-icons a:hover i {
  opacity: 0.8;
}
