body {
  background:#0a7a57;
  font-family: Arial, sans-serif;
  color:#fff;
}

.wrapper {
  max-width:1000px;
  margin:30px auto;
}

h1 {
  text-align:center;
}

.glow-title {
  color: #eafff6;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  text-shadow:
    0 0 5px #1cffb3,
    0 0 10px #1cffb3,
    0 0 20px #1cffb3,
    0 0 40px #00ff9c;
}

.filter {
  background:#0b6348;
  padding:15px;
  border-radius:12px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:10px;
}

.filter input, .filter select, .filter button {
  padding:10px;
  border-radius:8px;
  border:none;
}

.filter button {
  background:#1cc88a;
  font-weight:bold;
  cursor:pointer;
}

.result-box {
  background:#fff;
  color:#000;
  border-radius:16px;
  padding:20px;
  margin:20px 0;
}

.result-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.big {
  font-size:28px;
  font-weight:bold;
  color:#0a7a57;
}

.hasil-box {
  background:#0b6348;
  border-radius:16px;
  padding:20px;
}

.hasil-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
}

.card {
  background:#fff;
  color:#000;
  border-radius:12px;
  padding:15px;
}

.note {
  font-size:12px;
  opacity:.8;
  margin-top:10px;
}

{
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #067a55, #0b3f2f);
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #00ff9c;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

.section {
  background: #ffffff;
  color: #000;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.section h2 {
  margin-top: 0;
  color: #067a55;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 15px;
}

.feature {
  background: #eafff4;
  padding: 15px;
  border-radius: 12px;
  font-weight: bold;
}

.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider {
  background: #067a55;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.cta {
  text-align: center;
  margin-top: 20px;
}

.cta button {
  background: linear-gradient(90deg,#00ff9c,#00c87a);
  border: none;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0,255,156,.6);
}

.cta button:hover {
  transform: scale(1.05);
}