.block-zayavka-vod {
  position: relative;
  height: 300px;                 /* задаём высоту */
  overflow: hidden;
  display: flex;                 /* выравнивание по центру */
  flex-direction: column;
  justify-content: center;       /* по вертикали */
  align-items: center;           /* по горизонтали */
  text-align: center;
  color: white;
  border: none;
}

.block-zayavka-vod::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/source/images/vodostochka/vod_second.jpg') center/cover no-repeat;
  filter: blur(4px) brightness(0.6); /* размытие + затемнение для контраста текста */
  z-index: 0;
}

.block-zayavka-vod > * {
  position: relative;
  z-index: 1; /* текст и кнопка поверх фона */
}

.block-zayavka-utepl {
  position: relative;
  height: 300px;                 /* задаём высоту */
  overflow: hidden;
  display: flex;                 /* выравнивание по центру */
  flex-direction: column;
  justify-content: center;       /* по вертикали */
  align-items: center;           /* по горизонтали */
  text-align: center;
  color: white;
  border: none;
}

.block-zayavka-utepl::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/source/images/posluga/uteplenie.png') center/cover no-repeat;
  filter: blur(4px) brightness(0.6); /* размытие + затемнение для контраста текста */
  z-index: 0;
}

.block-zayavka-utepl > * {
  position: relative;
  z-index: 1; /* текст и кнопка поверх фона */
}