.footer-container {
  width: 100%;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b2f3b;
}

.footer-container1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.footer-container2 {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.footer-container3 {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-text {
  font-size: 1rem;
  color: white; /* Ensure text color is white */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    display: block;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
