.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.77);
  backdrop-filter: blur(10px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 100px;
  box-sizing: border-box;
  z-index: 1000;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-center {
  display: flex;
  gap: 2rem;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}

.footer p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.8;
}

.footer-link a {
  color: white;
  text-decoration: none;
  font-size: 1.05rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-link a:hover {
  opacity: 1;
}

.footer-social a {
  color: white;
  text-decoration: none;
  font-size: 1.05rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-social a:hover {
  opacity: 1;
}

body {
  margin: 0;
  padding: 0;
  padding-bottom: 100px;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    text-align: center;
    min-height: 100px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex-direction: column;
    gap: 0.8rem;
  }

  body {
    padding-bottom: 120px;
  }
}