/* === Page Wrapper === */
.pejabat-page {
  padding-top: 30px;
  padding-bottom: 50px;
  background-color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* === Title === */
.pejabat-page h2 {
  text-align: center;
  color: #222;
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 700;
}

/* === Table Section === */
.pejabat-section {
  display: flex;
  justify-content: center;
}

.table-wrapper {
  width: 100%;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* === Table === */
.pejabat-table {
  width: 100%;
  border-collapse: collapse;
}

.pejabat-table thead {
  background-color: #004aad;
  color: #fff;
}

.pejabat-table th,
.pejabat-table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 15px;
  text-align: left;
}

.pejabat-table th {
  text-align: center;
  font-weight: 600;
}

.pejabat-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.pejabat-table tbody tr:hover {
  background-color: #e6f2ff;
}

/* === Responsive Table === */
@media (max-width: 768px) {
  .pejabat-table thead {
    display: none;
  }

  .pejabat-table, 
  .pejabat-table tbody, 
  .pejabat-table tr, 
  .pejabat-table td {
    display: block;
    width: 100%;
  }

  .pejabat-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
  }

  .pejabat-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .pejabat-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    text-align: left;
    font-weight: bold;
    color: #333;
  }
}
main.mt-5.pt-5 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}