@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
    font-family: "Outfit", serif;
}

html {
    scroll-behavior: smooth;
}

.chat-button {
  position: fixed;
  bottom: 20px;
  /* Posisi dari bawah layar */
  right: 20px;
  /* Posisi dari sisi kanan layar */
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 3000;
  /* Pastikan tombol berada di atas konten lainnya */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.chat-button:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
}

.chat-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.5);
}

.section-subtitle {
  color: #006EFF;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.text-subs {
    color: #949BB8;
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.6;
}

@media (max-width: 767px) {
  .section-subtitle {
  display: none;
  }
}