.infra-spots {
  width: 100%;
  background: linear-gradient(to right, #137695, #1ca5cf);
  padding: 60px 0;
}

.infra-spots .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  max-width: none;
}

.infra-spots h3 {
  color: white;
  text-align: center;
}

.spots-wrap {
  width: 100%;
  max-width: 500px;
}

.spots-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
}

.spots-container span {
  padding: 4px 12px;
  border-radius: 20px;
  background-color: #054b60;
  border: 1px solid #00a1d2;
  color: white;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .infra-spots .container {
    flex-direction: column;
    gap: 40px;
  }

  .spots-wrap {
    max-width: none;
  }
}
