.contacts-page .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 15px;
}

.contacts-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.contact-block h2 {
  margin-bottom: 10px;
  font-size: 32px;
  margin:0;
}

.contacts-map {
  margin-bottom: 30px;
}
.contact-block {border: 1px solid #e1e1e1;
    padding: 24px;}
.contact-block a {text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 24px;}
.contact-block a:hover {color:#f29100;}
.contact-block p {
  position: relative;
  margin-bottom: 10px;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}
.contacts-requisites {border: 1px solid #e1e1e1;
padding: 24px;} 
.contacts-requisites ul{
list-style:none;
padding:0;}
.contacts-requisites h2 {margin-bottom: 10px;
  font-size: 32px;
  margin:0;}
 .contacts-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.contacts-socials .socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contacts-socials .social-link {
  display: inline-block;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.contacts-socials .social-link:hover {
  transform: scale(1.1);
}

.contacts-socials .icon {
  width: 100%;
  height: 100%;
}
.contacts-socials h2 {font-size: 32px;margin:0;margin-bottom: 24px;}
.contacts-socials {border: 1px solid #e1e1e1;
padding: 24px;}
.container h1::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: #f29100;
	margin-top: 12px;
	border-radius: 2px;
}
.contact-page-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  margin-top: 24px;
}

.contact-page-icon {
  width: 46px;
  flex-shrink: 0;
}

.contact-page-text span {
  display: block;
  font-weight: bold;
  margin-bottom: 3px;
}

.contact-page-text a,
.contact-page-text p {
  margin: 0;
  color: #3a414b;
  text-decoration: none;
  line-height: 1.4;
}
.contacts-content {line-height: 181%;}
/* Базовый стиль у тебя уже есть */

@media (max-width: 991px) {
  .contacts-wrapper,
  .contacts-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-block h2,
  .contacts-requisites h2,
  .contacts-socials h2 {
    font-size: 26px;
  }

  .contact-block a {
    font-size: 20px;
  }

  .contacts-page .container {
    padding: 30px 15px;
  }
}

@media (max-width: 576px) {
  .contacts-wrapper,
  .contacts-bottom {
    gap: 15px;
  }

  .contact-block,
  .contacts-requisites,
  .contacts-socials {
    padding: 16px;
  }

  .contact-block h2,
  .contacts-requisites h2,
  .contacts-socials h2 {
    font-size: 22px;
  }

  .contact-block a {
    font-size: 18px;
  }

  .contact-page-item {
    align-items: flex-start;
  }

  .contact-page-icon {
    width: 36px;
  }

  .contacts-page .container {
    padding: 20px 12px;
  }
  .contacts-page h1 {margin-top:48px;}
}