.city-header {
    position: relative;
    width: 100%;
    height: 40vw;
    min-height: 300px;
    max-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;

}

.city-header-overlay {
    position: absolute;
    bottom: 0;
    width: 70%;
    background: #0040657d;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(3px); /* чуть-чуть блюра для солидности */
}
.city-header-content h6 {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.city-header-content h5 {
    font-size: 0.9rem;
    margin: 0.2rem;
    text-align: center;
    color: #fff;
}

.city-header-content h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    color: #fff;
}

.city-header-content p {
    font-size: 1.1rem;
    margin: 0.2rem;
    text-align: center;
    color: #fff;
}
.city-description p{
  color: white;
}
.city-map {
    width: 100%;
    height: 400px;
    margin-top: 2rem;
}
/* Диаграммы для города*/
  .charts-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
}

.chart-item {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.chart-item svg {
  transform: rotate(-90deg);
}

.progress-ring__background {
  fill: none;
  stroke-width: 8;
}

.progress-ring__circle {
  fill: none;
  stroke: #1d4c71;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1s ease-out;
}

.progress-ring__text {
  font-size: 18px;
  font-weight: bold;
  color: #1d4c71;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.progress-ring__label {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
  .charts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
