.field-item a{
			display: inline-block;
      padding: 10px 20px;
      background-color: #F5F5F5;
      color: #066DB2;
      border-radius: 5px;
      cursor: pointer;
      text-align: center;
      font-weight: bold;
      transition: background-color 0.3s;
      user-select: none;
}

   .field-item a:hover {
      background-color: #EEEEEE;
    }

    .field-item a:active {
      background-color: #1c5980;
    }
    
 .field {
  display: flex;
  flex-wrap: wrap; /* opsional, agar item bisa pindah baris jika overflow */
  gap: 10px;        /* beri jarak antar item, opsional */
}

/* General footer styling to match header dengan height lebih kecil */
#footer.flex-footer {
  background-color: #f8f9fa;
  box-shadow: 0 -4px 10px -2px rgba(0, 0, 0, 0.15); /* shadow ke atas */
  position: relative;
  z-index: 1;
}

.flex-footer-bottom {
  border-top:0px;
  padding: 0.75rem 0;  /* padding dikurangi */
}

.flex-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.region--footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;  /* gap antar elemen dikurangi */
}

.subfooter-area {
  text-align: center;
  padding: 0.5rem 0;  /* padding vertikal dikurangi */
}

.subfooter-area a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.subfooter-area a:hover {
  color: #007bff;
}

.subfooter-area img {
  max-height: 55px;  /* height gambar dikurangi */
  vertical-align: middle;
}

.subfooter-area hr {
  border: none;
  height: 2px;
  background-color: #ccc;
  margin: 0.5rem auto;
}

.subfooter-area h4,
.subfooter-area h5 {
  color: #000;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.subfooter-area p {
  margin: 0.25rem 0;
  font-size: 0.875rem;
}

.subfooter-area span {
  margin: 0 10px;
  display: inline-block;
}

.subfooter-area .button-link {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 0.875rem;
}

.button-link.contact { background-color: #008CBA; }
.button-link.involved { background-color: #4CAF50; }
.button-link.donation { background-color: #DF750F; }

@media (max-width: 768px) {
  .region--footer {
    align-items: center;
    text-align: center;
  }
  .subfooter-area span {
    display: block;
    margin: 5px 0;
  }
}
