
.consult-block {
  display: flex;
  align-items: center;
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 36px;
  max-width: 1400px;
  margin: 40px auto 32px auto;
  gap: 32px;
}
.consult-block-img {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}
.consult-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.consult-block-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.consult-block-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.consult-block-desc {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 0;
}
.consult-block-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
  margin-left: 32px;
}
.consult-block-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 0;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  border: none;
  cursor: pointer;
}
.consult-block-btn.phone {
  background: #ff6a1a;
  color: #fff;
}
.consult-block-btn.phone:hover {
  background: #e04d0f;
}
.consult-block-btn.book {
  background: #1877ff;
  color: #fff;
}
.consult-block-btn.book:hover {
  background: #0056b8;
}
@media (max-width: 900px) {
  .consult-block { flex-direction: column; align-items: stretch; padding: 24px 10px; gap: 18px; }
  .consult-block-img { margin: 0 auto 12px auto; }
  .consult-block-btns { 
    flex-direction: column; 
    gap: 12px; 
    margin: 24px 0 0 0; 
    align-items: stretch;
  }
  .consult-block-btn {
    width: 100%;
  }
}

.other-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Масштабирует и обрезает изображение */
  display: block;
  filter: brightness(70%); /* Темный эффект, как на скриншоте */
}





