/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 70px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-logo p {
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-links h4, .footer-legal h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--light);
}

.footer-links ul, .footer-legal ul {
  list-style: none;
}

.footer-links li, .footer-legal li {
  margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-links a:hover, .footer-legal a:hover {
  opacity: 1;
  color: var(--light);
  padding-left: 5px;
}

.footer-bottom p {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.7;
}