body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9fb;
  color: #333;
  line-height: 1.6;
}

header {
  padding: 4rem 1.5rem;
  text-align: center;
  background: white;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #2e60f2;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #234ad0;
}

.disclaimer {
  font-size: 0.85rem;
  color: #888;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
.form-container {
  max-width: 420px;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  font-size: 1rem;
}

form label {
  display: block;
  margin-bottom: 0.3rem;
  margin-top: 1rem;
  font-weight: 600;
}

form input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.required {
  color: #d00;
  margin-left: 2px;
}

form button.cta-button {
  margin-top: 2rem;
  width: 100%;
  font-weight: 700;
  font-size: 1.1rem;
}

}
