body {
  font-family: 'Roboto', sans-serif; /* ganti serif → sans-serif */
  margin: 0;
  padding: 10px;
  line-height: 1.7;
  background: white; /* ✅ diperbaiki */
  color: #222222; /* sedikit lebih soft dari hitam pekat */
  text-align: center;
}

section {
  margin-bottom: 20px; /* sedikit diperlebar biar lega */
  padding: 10px;
}

h1, h2, h3 {
  color: #111111; /* lebih kontras & tegas */
  margin-top: 10px;
  margin-bottom: 10px;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.4rem; }

p {
  margin-bottom: 10px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

ol {
  margin-bottom: 10px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

a.btn-wa {
  display: inline-block;
  background: #25D366; /* hijau resmi WhatsApp */
  color: #ffffff; /* putih kontras tinggi */
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 700; /* lebih jelas */
  border-radius: 6px;
  margin: 10px 0;
  font-size: 16px;
}

a.btn-wa:hover {
  background: #1ebe5d; /* sedikit lebih gelap */
}

.img {
  width: 300px;
  max-width: 100%;
  height: auto;
}

footer {
  background-color: #333333;  
  color: #ffffff;             
  padding: 20px 10px;         
  margin-top: 30px;           
  text-align: center;         
  font-size: 0.9rem;          
  font-weight: 400;           
  border-top: 2px solid #444; 
  box-shadow: 0 -1px 5px rgba(0,0,0,0.2);
  border-radius: 20px;
}