.footer {
  background: #fff;
  color: #111;
  text-align: center;
  padding: 32px 0 0 0;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #eee;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.footer-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #FF4B2B;
}

.footer-logo {
  margin: 16px 0 24px 0;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: none;
  border: none;
  color: #111;
  font-size: 2rem;
  transition: color 0.2s;
  text-decoration: none;
  box-shadow: none;
}

.footer-social-icon:hover {
  color: #FF4B2B;
  background: none;
  border: none;
}

.footer-copyright {
  background: #111;
  color: #fff;
  padding: 16px 0;
  font-size: 1rem;
  margin-top: 24px;
} 