.rk-location-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.rk-section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.rk-section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #777;
}

.rk-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.rk-location-item {
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.rk-location-item:hover {
  background: #ff4f81;
  color: #fff;
  transform: translateY(-5px);
}