ul.custom-checklist {
  list-style: none;
  /* Hilangkan bullet default */
  padding: 0;
  margin: 0;
}

ul.custom-checklist li {
  position: relative;
  padding-left: 30px;
  /* Beri jarak untuk ikon */
  margin-bottom: 10px;
}

ul.custom-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #d7cc80;
  /* Warna biru seperti pada gambar */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.custom-checklist li::before {
  content: "\2713";
  /* Karakter centang */
  font-size: 14px;
  color: rgb(11, 11, 11);
  /* Warna centang putih */
  text-align: center;
}
.brush-style {
  width: 100%;
  /* Sesuaikan dengan kebutuhan */
  height: auto;
  mask-image: url("../img/brush.png");
  /* Ganti dengan path ke gambar brush */
  -webkit-mask-image: url("../img/brush.png");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.background-image:hover {
  filter: brightness(50%);
}

.content .btn {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.content .btn:hover {
  transform: scale(1.1);
  background-color: #d7cc80;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content i {
  transition: color 0.3s ease;
}

.content i:hover {
  color: #d7cc80;
}
