
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #f0f2f5;
  color: #333;
}

header {
  background: #f0f2f5;
  color: #0F3A5A;
  padding: .5rem;
}

.logo {
  width: 200px;
}

main {
  padding: .5rem;
}

.features, .cta, .signup {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 0.5rem 0;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #ff6f00;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

input[type="email"] {
  padding: 0.5rem;
  font-size: 1rem;
}

button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: #0F3A5A;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  background: #eee;
  padding: .5rem;
  font-size: 0.9rem;
}

.side-by-side {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin: 2rem auto;
  max-width: 100%;
  padding: 0 1rem;
}

.side-by-side section {
  flex: 1 1 33%;
  background: #f0f2f5;
  color: #000;
  padding: .2rem;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  text-align: left;
}

.side-by-side section h2 {
  text-align: center;
}



.cta {
  background: #e0f0ff; /* optional background for visibility */
  padding: 1rem;        /* increase padding for a bigger feel */
  text-align: center;
  border-radius: 8px;
  margin: 2rem 0;
  font-size: 1.2rem;     /* increase text size */
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta .button {
  font-size: 1.2rem;
  padding: 1rem 2rem;
}


.demo-preview {
  margin: 2rem auto;
  text-align: center;
}
.demo-preview img {
  max-width: 90%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.caption {
  margin-top: 0.5rem;
  font-style: italic;
  color: #555;
}



.coming-soon {
  background: #fffbea;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  text-align: left;
  margin-top: 1rem;
}



