.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.footer {
  background-color: #1a1a1a;
  color: #f1f1f1;
  padding: 1rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto; 
  padding: 0 1.5rem; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  font-weight: 500;
}

.footer-right a {
  color: #f1f1f1;
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #0e76a8; 
}