body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #e8f3ff, #fdfefe);
  margin: 0; padding: 0;
}
.container {
  max-width: 720px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
h1 {
  text-align: center;
  color: #064274;
}
.subtitle {
  text-align: center;
  margin-bottom: 15px;
  color: #444;
}
.input-group {
  margin: 12px 0;
}
label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}
input, select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #aaa;
  font-size: 15px;
}
button {
  width: 100%;
  background: #0a66c2;
  color: white;
  padding: 14px;
  font-size: 17px;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
  cursor: pointer;
}
button:hover {
  background: #084e96;
}
button.secondary {
  background: #16a34a;
}
button.secondary:hover {
  background: #12803a;
}
.results {
  margin-top: 22px;
  background: #f1f9ff;
  border-left: 5px solid #0a66c2;
  padding: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.highlight {
  color: #0a66c2;
  font-weight: bold;
}
.lead-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 10px;
  background: #f0fff4;
  border: 2px dashed #16a34a;
}
.small {
  font-size: 13px;
  opacity: 0.8;
  text-align: center;
}
.trust {
  margin-top: 20px;
  background: #fffbe6;
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
  font-size: 14px;
}
