.service-prices {
  padding: 24px 0 56px;
}

.service-prices__title {
  margin: 0 0 24px;
  color: var(--berloga-text);
}

/* Сужаем контент прайса и центрируем */
.service-prices__content {
  max-width: 1080px;
  margin: 0 auto;
}

.service-prices__content a {
  color: var(--berloga-blue);
  text-decoration: none;
}

.service-prices__content a:hover {
  text-decoration: underline;
}

/* Table layout (если прайс размечен таблицей) */
.service-prices__content table {
  width: 100%;
  border-collapse: collapse;
}

.service-prices__content thead th {
  background-color: var(--berloga-dark-blue) !important;
  color: var(--berloga-white);
}

.service-prices__content th,
.service-prices__content td {
  padding: 10px;
  border: 1px solid var(--berloga-dark-blue);
}

.service-prices__content th {
  text-align: left;
  background-color: #f5f5f5;
  font-weight: bold;
}

.service-prices__content td:last-child {
  text-align: right;
  white-space: nowrap;
}

/* Каждая чётная строка заливается 10% berloga-blue */
.service-prices__content tbody tr:nth-child(even) {
  background-color: #eaf3f9;
}

/* Поддержка классов старого прайса из родителя */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 15px;
}

.price-column {
  text-align: right;
  white-space: nowrap;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
}

.price-table {
  table-layout: fixed;
}

.price-table th:first-child,
.price-table td:first-child {
  width: auto;
}

.price-table th:last-child,
.price-table td:last-child {
  width: 120px;
}

.price-list-category-title {
  margin-top: 30px;
  margin-bottom: 15px;
}

.price-disclaimer {
  background-color: #f8f9fa;
  border-left: 4px solid var(--berloga-dark-blue);
  padding: 15px;
  margin: 30px 0;
  font-size: 0.9em;
  line-height: 1.5;
}

.price-disclaimer p {
  margin: 0;
}

/* Списком (если прайс размечен списком) */
.service-prices__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: var(--ten-kartochki-box-shadow);
  border-radius: 14px;
  overflow: hidden;
  background: var(--berloga-white);
}

.service-prices__content li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.service-prices__content li:last-child {
  border-bottom: none;
}

.service-prices__content li:nth-child(even) {
  background: var(--berloga-blue-10);
}

.service-prices__content li .price {
  color: var(--berloga-text);
  font-weight: 700;
  white-space: nowrap;
}

/* Параграфы-пояснения */
.service-prices__content p {
  margin: 14px 0;
}

@media (max-width: 768px) {

  .service-prices__content th,
  .service-prices__content td {
    padding: 12px 14px;
  }

  .service-prices__content li {
    padding: 12px 14px;
  }
}

/* Скрываем подзаголовки на странице цен, чтобы избежать дублирования */
.prices-page h3 {
  display: none;
}