.locations-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-card {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px;
  overflow: hidden;
  text-align: left;
}

.location-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.location-content {
  padding: 20px;
}

.state-label {
  background-color: #b0b0b0;
  color: #333;
  font-size: 12px;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.city-name {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px;
}

.address {
  font-size: 14px;
  color: #666;
  margin: 0 0 10px;
  line-height: 1.5;
}

.phone {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px;
}

.get-in-touch-button {
  border-radius: 8px;
  border-color: #909090;
  padding: 10px;
  color: #ffffff;
  background-color: rgb(35, 133, 146);
  text-decoration: none;
  text-align: center;
  font-family: helvetica;
  font-size: 12px;
}
