/* ===================================
   Pages - Service Heritage (Inheritance)
   =================================== */

.info-table-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 40px 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th {
  background: var(--bg-light);
  color: var(--primary-dark);
  padding: 15px;
  text-align: left;
  width: 200px;
  border-bottom: 1px solid var(--border-color);
}

.info-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .info-table th {
    width: auto;
    display: block;
    border-bottom: none;
  }

  .info-table td {
    display: block;
    padding-top: 0;
  }
}