/* === Общие стили для всего сайта (были инлайн, теперь отдельный файл) === */
html, body {
    height: 100%;
    margin: 0;
    background-color: #121212;
    background-image: none !important;
  }
  
  /* Сбрасываем фон у контента, НО НЕ у .site-header */
  header:not(.site-header), main, footer,
  #banner, #about, #education, #appointment,
  #extra-education, #services, #cta, #patients,
  #social, #workplace, #page-content {
    background: transparent !important;
  }
  
  body.background-image {
    background:
      image-set(
        url("../background.webp") type("image/webp"),
        url("../background.jpg") type("image/jpeg")
      ) center center / cover no-repeat,
      #121212;
  }
  
  @media (max-width: 768px) {
    body.background-image {
      background:
        image-set(
          url("../background.webp") type("image/webp"),
          url("../background.jpg") type("image/jpeg")
        ) center center / cover no-repeat,
        #121212;
    }
  }
  