/* Основная сетка секции */
.service-detail-main {
  padding: 48px 0;
  background: #f7f8fa;
}

.service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.service-detail-content {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 32px;
}

.service-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #1a2330;
}

.service-detail-list {
  margin-bottom: 24px;
  padding-left: 20px;
}

.service-detail-list li {
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: #444;
  list-style: disc;
}

.service-detail-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px 0;
  color: #1a2330;
}

.service-detail-price {
  margin: 24px 0 16px 0;
  font-size: 1.2rem;
  color: #e67e22;
  font-weight: bold;
}

.service-detail-buttons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}


.btn-outline {
  border: 2px solid #e67e22;
  color: #e67e22;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover,
.btn-outline:focus {
  background: #e67e22;
  color: #fff;
  border-color: #e67e22;
}


.service-detail-image {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* Адаптивность */
@media (max-width: 900px) {
  .service-detail-grid {
    flex-direction: column;
    gap: 24px;
  }

  .service-detail-content,
  .service-detail-image {
    padding: 0;
    box-shadow: none;
    background: none;
  }
}