body {
  background: #f8f9fa;
}
.card-custom {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  transition: all 0.3s ease; /* animasi smooth */
}
.card-custom:hover {
  transform: translateY(-5px); /* naik sedikit */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* efek bayangan */
}
.nav-link {
  font-weight: 500;
}
textarea {
  resize: none;
}
.texts {
  font-size: 10px;
  font-style: normal;
  color: #777778;
}
img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .texts {
    font-size: 8px;
  }
}
