.header h1 {
    margin: 0;
    font-size: 24px;
}

.locations-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.locations-right {
  text-align: right;
}

/* Mobile / small screens */
@media (max-width: 600px) {
  .locations-line {
    flex-direction: column;
  }

  .locations-right {
    text-align: left;
    margin-top: 12px; /* spacing between Brownsville and Edinburg */
  }
}

