/* Section Title */
.section-title {
  display: inline-block;
  position: relative;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Garis bawah otomatis mengikuti panjang teks */
.section-title:not(.no-line)::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0d6efd;
  margin-top: 6px;
  border-radius: 2px;
}

/* Hilangkan garis untuk "Tentang" */
.no-line::after {
  display: none !important;
}

/* Fitur Section - ubah background agar beda dari putih */
.fitur-section {
  background: #f0f5ff; /* lembut biru keabu */
}

/* Card efek */
.fitur-section .card {
  border-radius: 15px;
  transition: 0.3s;
  border: none;
}
.fitur-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* Cara Kerja */
.step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step p {
  margin: 0;
  color: #333;
  font-size: 16px;
}
