/* Основные стили для светлой зеленой гаммы */
body {
  font-family: 'Arial', sans-serif;
}

/* hover эффект для карточек услуг */
.hover-shadow:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Цвет акцента */
.text-success {
  color: #13a1a5 !important;
}

/* Кнопки */
.btn-success {
  background-color: #66bb6a;
  border-color: #66bb6a;
}

.btn-success:hover {
  background-color: #558b2f;
  border-color: #558b2f;
}

.map-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}


.implantologia_table th {
  background: #0b9da6;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.36px;
}

.implantologia_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
  }

.implantologia_wrap .item {
    padding: 24px;
    border-radius: 14px;
    background: #e7f7f5;
    display: flex;
    flex-direction: column;
  }

.implantologia_wrap .item .head {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.implantologia_wrap .item .head .num {
    color: #0b9da6;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.32px;
    border-radius: 50%;
    background: #fff;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.implantologia_wrap .item .title {
    color: #0b9da6;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.48px;
    margin-top: 24px;
}
.implantologia_wrap .item .text {
    color: #444;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 12px;
}
.implantologia_table th,
.implantologia_table td {
  border-top: 1px solid #0b9da6;
  padding: 24px;
  text-align: left;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inform i {
  font-size: 90px;
  padding-left: 15px;
  color: #35a497;
}


.recomendation a {
    color: #444;
    font-size: 20px;
    letter-spacing: -0.64px;
    text-decoration: none;
}










/* Основные стили карточки */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #fafafa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-card h5.service-title {
  margin-bottom: 1rem;
}

.service-card p.service-desc {
  color: #777;
  font-size: 16px;
}

.service-card a.btn-service {
  align-self: center;
  background-color: #13a1a5;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* Для увеличения визуальной привлекательности */
.service-card:hover {
  transform: scale(1.05);
}

.service-icon {
  font-size: 4em;
  color: #0d6efd;
  margin-bottom: 1rem;
}

.tooth-operation {
  background: -webkit-linear-gradient(90deg, #abb2b8, #71abb6, #2ea393);
  background: linear-gradient(90deg, #abb2b8, #71abb6, #2ea393);
}

@media screen and (max-width:768px) {
  .service-card {
    margin-bottom: 20px;
  }
}