body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #1f2d3d;
}

header {
  background-color: #0a0a0a;
  padding: 10px 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.logo {
  height: 40px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9em;
}

.nav-link:hover {
  text-decoration: underline;
}


main {
  display: flex;
  justify-content: center;
  align-items: center;
}


.container {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  max-width: 850px;
  width: 100%;
}

h1 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}

form input, form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.waitlist-form input,
.waitlist-form button {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 15px auto;
  display: block;
}

.waitlist-form button {
  font-weight: bold;
  letter-spacing: 0.5px;
}



form button {
  background-color: #003A70;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #002855;
}

.message {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #e0f7fa;
  border-left: 4px solid #007B8A;
}

.subtitle {
  font-style: italic;
  color: #555;
  margin-top: -10px;
  margin-bottom: 20px;
}

.info-section {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.info-section h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #003A70;
}

.benefits,
.pricing {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.benefits li,
.pricing li {
  margin-bottom: 8px;
  line-height: 1.5em;
}

