@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.footer-wrapper {
  position: relative;
  width: 100%;
  background-color: #000000;
  z-index: 999;
  bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 24px;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 13px;
  background-color: #000000;
  border-top: 1px solid #222;
  bottom: 0;
}

.footer-left {
  color: #cccccc;
}

.footer-right {
  display: flex;
  gap: 18px;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
}

.footer-link:hover {
  color: #fff;
  border-bottom: 2px solid #ff0025;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
    text-align: center;
  }
  
  .footer-right {
    gap: 15px;
  }
  
  .footer-link {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 16px;
    gap: 15px;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-link {
    font-size: 10px;
    padding: 8px 0;
  }
  
  .footer-left {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .footer {
    padding: 16px 12px;
  }
  
  .footer-link {
    font-size: 9px;
  }
  
  .footer-left {
    font-size: 11px;
  }
}

