
/* CARD */
.facility-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h3 {
  color: var(--primary-blue);
  font-weight: 700;
  position: relative;
}

.section-header h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  margin-top: 8px;
}

/* PDF BUTTON */
.doc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.doc-btn:hover {
  background: var(--primary-blue);
}

/* TABLE */
.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}

/* ROW STYLE */
.custom-table tr {
  transition: 0.2s;
}

.custom-table tr:nth-child(even) {
  background: #f9fafc;
}

.custom-table tr:hover {
  background: rgba(38, 52, 137, 0.08);
}

/* CELLS */
.custom-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

/* LEFT COLUMN */
.custom-table td:first-child {
  font-weight: 600;
  color: var(--primary-blue);
}

/* RIGHT COLUMN */
.custom-table td:last-child {
  text-align: right;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .facility-card {
    padding: 20px;
  }

  .custom-table td {
    font-size: 13px;
  }
}