.contact-section {
  color: #1f2937;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden; /* защита от переполнения */
}

/* Контейнер */
.contact-container {
  max-width: 1200px;
  width: auto;
  height: 100%;
  margin: 0 20px; 
  padding: 0;
  box-sizing: border-box;
}



/* Сетка */
.contact-grid {
  grid-template-columns: 35% 65%;
  width: 100%;
  margin: auto; 
  display: flex;
  justify-content: space-between;
  
}

  .contact-info {
    margin: auto 20px;
    width: 50%;
  }

/* Левая колонка — текст */
.contact-info p {
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  word-wrap: break-word;
  padding: 0;
  font-size: clamp(
    12px,
    calc((70vw - 630px) * 8 / 570 + 12px),
    20px
  );
  width: 100%;
}

/* Название компании */
.company-name {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-size: clamp(
    16px,
    calc((70vw - 630px) * 6 / 570 + 16px),
    22px
  );
  font-weight: 600;
  color: #2D3630;
  margin-bottom: 1rem;
  padding: 0 30px 0 0;
}

/* Ссылки */
.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #0C7296;
}

/* Время работы */
.worktime {
  margin-top: 20px;
  font-size: 0.875rem;
  color: #4b5563;
}

/* Правая колонка — карта */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  height: 60vh;
  min-height: 360px;
  max-height: 500px;
  width: 60%;
  border: 2px inset #cbd3df;
}

.map-container iframe {
  width: 100%;  margin: auto;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 600px) { 
  .map-container {
    height: 50vh;
    width: 100%;
  }
  .contact-section {
    margin-bottom: 50px;
  }
    .contact-grid {
  flex-direction: column;
  grid-template-columns: 1fr;
  width: 100%;  
  margin: auto; 
  }

  .contact-info  {
    margin: 3px 0;
    width: 100%;
  }
  .contact-info p, .company-name {
    margin: 8px 10px;
    font-size: 18px;
    line-height: 1.2;
  }
}