body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header {
  background: linear-gradient(135deg, #ffbf00, #ff8000);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.nav-links a.active {
  text-decoration: underline;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.cta {
  background: #fff;
  color: #ff8000;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  background: #fff;
  color: #ff8000;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

main {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h1, h2 {
  color: #ff8000;
}

.steps {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  font-weight: bold;
}

.demo form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.demo input, .demo button, .cta-section input, .cta-section button, form input, form textarea, form button {
  padding: 10px;
  font-size: 1rem;
}

.demo button, .cta-section button, form button {
  background: #ff8000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cta-section form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.cta-section input {
  flex: 1;
  max-width: 300px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}