body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #2ecc71, #3498db);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.4em;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.description {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.6;
}

.trust-signals {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.trust-signals li {
  font-size: 1em;
  margin: 8px 0;
}

.cta-button {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #c0392b;
}
