.link-spacing:not(:last-child) {
  margin-right: 20px;
}

.md-justify-end {
justify-content: flex-end;
}


.footer-container {
  font-size: 12px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom:10px;

}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.link-container {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping in smaller screens */
  justify-content: flex-end;
}

.link-spacing:not(:last-child) {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column; /* Stack vertically */
    align-items: flex-start;
  }

  .link-container {
    margin-top: 10px; /* Space between text and links on small screens */
    justify-content: flex-start;
  }

  .link-spacing {
    margin-right: 0;
    margin-bottom: 5px; /* Space between links vertically */
  }
}
