.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;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  font-family: inherit;
  z-index: 1000;
  min-height: 100px;
}

.footer-static {
  position: relative !important;
  margin-top: auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-left a {
  color: white;
  text-decoration: none !important;
  font-size: 1.05rem;
  opacity: 0.8;
}

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

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

.footer-center a {
  color: white;
  text-decoration: none !important;
  font-size: 1.05rem;
  opacity: 0.8;
}

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

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-right a {
  color: white;
  text-decoration: none !important;
  font-size: 1.05rem;
  opacity: 0.8;
}

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

.divider {
  opacity: 0.5;
}

.footer a:visited {
  color: white;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem;
    gap: 0.5rem;
  }

  .footer-center {
    justify-content: flex-start;
  }

  .footer-right {
    margin-top: 0.5rem;
    justify-content: flex-start;
  }

  .divider {
    display: none;
  }
}