
.breadcrumbs {
  margin: 32px 0 18px 0;
  font-size: 1em;
  color: #888;
}
.breadcrumbs a {
  color: #1877ff;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.contacts-section {
  width: 100%;
  background: #fff;
  padding: 48px 0 64px 0;
  display: flex;
  justify-content: center;
}
.contacts-container {
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
}
.contacts-title {
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 28px;
  color: #222;
  text-align: left;
}
.contacts-main {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.contacts-info {
  flex: 1.1;
  background: #f7f9fd;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 36px 28px;
  font-size: 1.15em;
  color: #222;
  min-width: 260px;
  max-width: 400px;
}
.contacts-info-block {
  margin-bottom: 18px;
}
.contacts-info-label {
  font-weight: 700;
  color: #1877ff;
  margin-right: 8px;
}
.contacts-info-value {
  font-weight: 500;
}
.contacts-form-block {
  flex: 2;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 36px 28px;
  min-width: 260px;
}
.contacts-form input,
.contacts-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}
.contacts-form button {
  background-color: #1877ff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 700;
  width: 100%;
  transition: background 0.2s;
}
.contacts-form button:hover {
  background: #0d5fd3;
}
.contacts-map-block {
  margin-top: 38px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.contacts-map-iframe iframe {
  width: 100%;
  min-height: 340px;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .contacts-main { flex-direction: column; gap: 24px; }
  .contacts-info, .contacts-form-block { max-width: 100%; }
}
@media (max-width: 700px) {
  .contacts-title { font-size: 1.4em; }
  .contacts-info, .contacts-form-block { padding: 14px 6px; font-size: 1em; }
}
.contacts-hide {
  display: none;
}
