:root {
  --h3-size: 36px;
  --h3-weight: 600;
  --nv-blue: #00568c;
  --nv-orange: #ff8204;
  --nv-bgcolor: #f5f5f5;
  --nv-white: #ffffff;
}

/* General container */
.nv-other-locations {
  padding: 40px 20px;
  background: #fff;
  font-family: "Segoe UI", sans-serif;
}
.nv-other-locations .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.nv-other-locations h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ff8204;
}
.nv-other-locations h2 .state-name {
  color: #00568c;
}
.nv-other-locations p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
}
.nv-other-locations .card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}
.nv-other-locations .city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px 40px;
  justify-content: center;
  padding: 10px 0;
}
.nv-other-locations .city-grid a {
  color: #00568c;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.nv-other-locations .city-grid a:hover,
.nv-other-locations .city-grid a:focus {
  transform: scale(1.1);
  color: #ff8204;
}

@media (max-width: 767px) {
  .nv-other-locations .city-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
  }
}
