.site-footer {
  background: #2d3748;
  color: #e2e8f0;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.2);
}

.footer-brand h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  transition: all 0.3s;
}

.social-link:hover {
  background: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.footer-link {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #007bff;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: #a0aec0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
