p {
  margin-bottom: 10px;
}
.col-md-12.about_journal {
  display: none;
}

.pkp_structure_page {
  background-color: transparent;
  background-image: url(https://ibb.co/2shHx0T);
  background-repeat: repeat;
  overflow: auto;
}

.pkp_site_name {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pkp_site_name > a {
  padding-top: 0;
  padding-bottom: 0;
}

.pkp_site_name .is_img img {
  max-height: 200px !important;
}

.pkp_site_name_wrapper {
  padding-left: 0;
  padding-right: 0;
}

.pkp_navigation_user_wrapper {
  top: 0;
  right: 0;
  padding-right: 30px;
}

.pkp_structure_page {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  padding-bottom: 10px !important;
}

.pkp_site_name .is_img img {
  display: inline-block;
  max-height: 100px;
  max-width: 100%;
  width: auto;
  height: auto;
}

body {
  color: none;
  line-height: 1.5;
  text-align: left;
}
/* WhatsApp Floating Button */
.wa-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.wa-float-btn:hover {
  background-color: #128C7E;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

.wa-float-btn img {
  width: 35px;
  height: 35px;
}

/* Animasi pulse seperti di website Ilomata */
.wa-float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10%;
  background-color: #25D366;
  opacity: 0;
  margin: auto;
  animation: wa-pulse 2s infinite ease-out;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}