.logo-footer {
  height: 100px;
  width: auto; 
  object-fit: contain; 
}
footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 20px;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: white;
  padding-left: 5px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
