body {
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
}

.containerDetail {
  max-width: 1500px;
  margin: auto;
  padding: 60px 20px;
}

.title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
}

/* DROPDOWN */
.filter-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.filter-wrapper select {
  padding: 10px 42px 10px 18px; 
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center; 
  background-size: 12px;
}

/* SECTION */
.instansi-section {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
}

/* TITLE */
.instansi-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* LINE */
.instansi-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #0d6efd, transparent);
  margin-bottom: 25px;
}

/* LIST GRID */
.instansi-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 14px;
}

.instansi-list li {
  font-size: 14px;
  color: #333;
  padding-left: 16px;
  position: relative;
}

.instansi-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-size: 18px;
}

/* =======================
   NAVBAR HALAMAN DETAIL
======================== */

.page-contact .navbar {
  background-color: #ffc107;
  padding: 15px 0;
}

.page-contact .navbar .navbar-brand,
.page-contact .navbar .nav-link {
  color: #212529 !important;
}

.page-contact .navbar .nav-link:hover {
  color: #ffffff !important;
}

/* DROPDOWN */
.page-contact .navbar .dropdown {
  background-color: #ffc107;
}

.page-contact .navbar .dropdown .nav-link {
  color: #212529 !important;
}

.page-contact .navbar .dropdown .nav-link:hover {
  background: rgba(0,0,0,0.08);
}

.page-contact {
  padding-top: 110px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .instansi-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .instansi-list {
    grid-template-columns: 1fr;
  }
}
