/* Глобальные стили */
body {
  background: url('/media/about/12.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Стили для карточек услуг и секции услуг */
.service-card {
  background: rgba(255,255,255,0.95);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  padding: 1.5rem;
  text-align: center;
}
.service-card img {
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.service-card h5 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
#services {
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Стили для горизонтальных карточек пациентов */
.patient-horizontal-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 180px;
  padding: 1rem;
  gap: 1.5rem;
}
.patient-images {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.patient-img {
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #f8f9fa;
  display: block;
}
@media (max-width: 768px) {
  .patient-horizontal-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .patient-img {
    width: 100px;
    height: 100px;
  }
}
