.footer-locations {

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #f4f4f4;
  padding: 2em;
  font-size: 0.9em;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom:  1px solid #ccc;
  border-right: 1px solid #ccc;
  font-weight: 400;
}

.footer-locations {

  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 200:
  color: black;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #f4f4f4;
  padding: 2em;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom:  1px solid #ccc;
  border-right: 1px solid #ccc;
}


.footer-column {
  flex: 1 1 10%;
  margin: 0 1em;
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 0.5em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.3em;
}

.footer-column a {
  text-decoration: none;
  color: #333;
}

.three-column {
  display: flex;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif; 
  font-size: 14.96px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1.2;
  color: #222222;
  justify-content: space-between;
  align-items: flex-start; /* Ensures top alignment */
  margin-bottom: 1em;
}

.left, .center, .right {
  flex: 0 0 33.3333%;
  box-sizing: border-box;
  padding-right: 1em; /* optional: spacing between columns */
  vertical-align: top;
}

.thin-hr {
  border: none;
  height: 1px;
  background-color: #999;
  margin: 1em 0;
}

.thinhr50 {
  border: none;
  height: 1px;
  width: 50%;
}

@media (max-width: 600px) {
  .footer-locations {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
    margin: 1em 0;
  }
}


