.footer {
  background-color: black; 
  color: white; 
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-column a {
  text-decoration: none;
  margin-bottom: 10px;
  color: white;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.social-icons a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #ffffff;
}


.footer-logo {
  width: 80px;
  margin-bottom: 10px;
}

.logo-column p {
  font-size: 14px;
}