.nt-price-title {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 22px;
}

/* Акордеон */
.nt-price-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.nt-price-accordion-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 12px;
  overflow: hidden;
}

.nt-price-accordion-header {
  padding: 14px 18px;
  cursor: pointer;
  background: #4a90e2;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}

.nt-price-accordion-header:hover {
  background: #3578c6;
}

.nt-price-accordion-header span {
  font-size: 18px;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.nt-price-accordion-header.active span {
  transform: rotate(90deg); /* стрілка вниз */
}

.nt-price-accordion-content {
  display: none;
  padding: 0;
}

.nt-price-accordion-content.active {
  display: block;
}

/* Таблиця */
.nt-price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-left: 1px solid #e0e6ed;
  border-right: 1px solid #e0e6ed;
  box-sizing: border-box;
}

.nt-price-table thead {
  background: #f0f3f8;
}

.nt-price-table th,
.nt-price-table td {
  padding: 10px 12px;
  border-top: 1px solid #e0e6ed;
  border-bottom: 1px solid #e0e6ed;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  box-sizing: border-box;
}

/* ширини колонок */
.nt-price-table th:first-child,
.nt-price-table td:first-child {
  width: 50%; /* Послуга */
  text-align: left;
  word-break: break-word;
}

.nt-price-table th:nth-child(2),
.nt-price-table td:nth-child(2) {
  width: 25%; /* Запчастина */
}

.nt-price-table th:nth-child(3),
.nt-price-table td:nth-child(3) {
  width: 25%; /* Робота */
}

/* вертикальні роздільники */
.nt-price-table th:not(:last-child),
.nt-price-table td:not(:last-child) {
  border-right: 1px solid #e0e6ed;
}

/* чергування рядків */
.nt-price-table tr:nth-child(even) {
  background: #fafafa;
}

/* Адаптив */
@media (max-width: 768px) {
  .nt-price-accordion-header {
    font-size: 16px;
    padding: 12px 14px;
  }
  .nt-price-table th,
  .nt-price-table td {
    font-size: 13px;
    padding: 8px 10px;
  }
}