/* style.css */
* {
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
}

body {
  background: #f9f9f9;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 500px;
  width: 100%;
  background: white;
  padding: 30px;
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow: 5px 5px 0px #000;
}

h1 {
  font-size: 32px;
  margin: 0 0 10px 0;
  text-align: center;
}

.tagline {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.trust, .proof, .guarantee {
  background: #f0f8ff;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.trust a {
  color: #1DA1F2;
  text-decoration: underline;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 2px solid #000;
  border-radius: 6px;
  font-size: 16px;
}

form textarea {
  height: 100px;
  resize: none;
}

.pay-button {
  width: 100%;
  background: #000;
  color: white;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.pay-button:hover {
  background: #333;
}

.guarantee {
  text-align: center;
  font-weight: bold;
  background: #e6ffe6 !important;
}

.small {
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
}

.pay-button {
  display: inline-block;
  width: 100%;
  max-width: auto;
  margin: 0 auto;
  text-align: center;}