body {
  font-family: sans-serif;
  background: #0f1117;
  color: #fff;
  padding: 20px;
}
.card,
.form-section {
  background: #171a23;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
h1,
h2 {
  margin-bottom: 10px;
}
.product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}
button {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background: #0056b3;
}
input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
  box-sizing: border-box; /* Ensures padding doesn't increase width */
}
.hidden {
  display: none;
}
footer {
  text-align: center;
  margin-top: 30px;
}
footer a {
  color: #007bff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.sosmed-icons {
 display: flex;
 gap: 15px;
 justify-content: center;
 margin: 10px 0;
}
.circle-icon {
 width: 45px;
 height: 45px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 font-size: 20px;
 text-decoration: none;
 transition: transform 0.2s;
}
.circle-icon:hover {
 transform: scale(1.1);
}
.circle-icon.whatsapp {
 background-color: #25D366;
}
.circle-icon.telegram {
 background-color: #0088cc;
}
.circle-icon.instagram {
 background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
