/* Стили для страниц операций */
.procedure-header {
  position: relative;
  background-image: url('/img/Surgery/Malyshev_surger.WEBP');
  background-size: cover;
  background-position: center;
  min-height: 300px;
  border-radius: 16px;
  padding: 80px 24px;
  margin: 80px 20px 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.procedure-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 16px;
}
.procedure-header-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.procedure-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 12px 0;
}
.procedure-header .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}
.procedure-section {
  margin-bottom: 60px;
  padding: 0 20px;
}
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}
.content-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.feature-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
}
.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #198754;
}
.feature-item p {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.info-list li:last-child {
  border-bottom: none;
}
.info-list li::before {
  content: '✓';
  color: #198754;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.2rem;
}
.warning-box {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box h4 {
  color: #856404;
  margin: 0 0 12px 0;
  font-size: 1.1rem;
}
.warning-box p {
  color: #856404;
  margin: 0;
  line-height: 1.6;
}
.cta-button {
  display: inline-block;
  background: #fff;
  color: #198754;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
  transition: all 0.3s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.breadcrumbs {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #666;
    margin-left: 10px;
}
.breadcrumbs a {
  color: #198754;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  margin: 0 8px;
}

/* Steps list for diagnostic procedures */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(25, 135, 84, 0.05);
  border-radius: 12px;
}
.step-number {
  width: 36px;
  height: 36px;
  background: #198754;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}
.step-content {
  flex: 1;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .procedure-header {
    margin: 60px 12px 30px 12px;
    padding: 60px 16px;
    min-height: 220px;
  }
  .procedure-header h1 {
    font-size: 1.8rem;
  }
  .procedure-header .subtitle {
    font-size: 1rem;
  }
  .content-card {
    padding: 20px;
  }
  .section-title {
    font-size: 1.4rem;
  }
}
