* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffbee;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #fff;
  border: 2px dashed #f4c542;
  border-radius: 12px;
  padding: 24px;
  max-width: 360px;
  width: 90%;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative; /* tambahkan agar child absolute mengacu ke container */
}

h1 {
  font-size: 21px;
  color: #5C4033;
  margin-bottom: 12px;
}

h2 {
  font-size: 18px;
  margin-bottom: 12px;
}

h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #333;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 10px;
}

ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

.cta-button {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #1ebc5c;
}

.footer {
  font-size: 13px;
  margin-top: 20px;
  color: #777;
}

.footer a {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 480px) {
  body {
    align-items: flex-start;
    padding-top: 20px;
    min-height: 100vh;
  }

  .container {
    margin-top: 15px;
    padding: 20px 16px;
    box-shadow: none;
    border-width: 1.5px;
  }

  h1, h2, h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  p, ul li {
    font-size: 14px;
    line-height: 1.4;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 10px 0;
    margin-top: 8px;
  }

  .footer {
    font-size: 12px;
    margin-top: 16px;
  }

  .footer a {
    text-decoration: none;
    color: inherit;
  }
}

/* Logo Halal di kanan atas */
.halal-logo {
 position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: auto;
  z-index: 10;
}

h1 {
  font-size: 21px;
  color: #5C4033;
  margin-bottom: 12px;
  line-height: 1.3;
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 17px;
    line-height: 1.2;
  }
}

.tagline {
  font-size: 15px;
  color: #5C4033;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (max-width: 480px) {
  .tagline {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
