.footer-container {
  background: #061d25;
  /* background: blueviolet; */
  padding: 10px 0;
}
.footer-container a {
  color: #70726f;
  font-size: 15px;
  padding: 10px;
  border-right: 1px solid #70726f;
  transition: all 0.5s ease;
}

.footer-container a:first-child {
  border-left: 1px solid #70726f;
}
.footer-container a:hover {
  color: white;
}

/* Styles for mobile view */
@media (max-width: 768px) {
  .footer-container {
    padding: 5px 0; /* Reduce padding */
  }

  .footer-container a {
    font-size: 12px !important; /* Smaller font size */
    padding: 10px; /* Reduce padding around links */
  }
  .footer-container a i.fa {
    font-size: 20px !important; /* Smaller font size */
    padding: 10px; /* Reduce padding around links */
  }
  .footer-container a:first-child {
    border-left: 1px solid #70726f; /* Keep the border consistent */
  }
}
