/* Секция "Наша карта" */
.my-map-section {
  width: 100%;
  padding: 80px 0;
}

/* Контейнер с заголовком */
.map-title-container {
  text-align: center;
  margin-bottom: 60px;
}

.map-title {
  font-family: 'DINPro', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #161817;
  margin: 0;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

/* Контейнер с картой */
.map-container {
  width: 100%;
  height: 665px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.map-background {
  width: 100%;
  height: 100%;
  background-image: url('/img/products/map.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
  .my-map-section {
    padding: 60px 0;
  }

  .map-title-container {
    margin-bottom: 40px;
  }

  .map-title {
    font-size: 32px;
    max-width: 500px;
  }

  .map-container {
    height: 500px;
  }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
  .my-map-section {
    padding: 40px 0;
  }

  .map-title-container {
    margin-bottom: 30px;
    padding: 0 16px;
  }

  .map-title {
    font-size: 22px;
    max-width: 630px;
  }

  .map-container {
    height: 171px;
    border-radius: 15px;
    margin: 0 16px;
  }
}
