/* Demo Intro Section */
.demo-intro {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.demo-intro h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #212121;
}

.demo-intro p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Demo Form Section */
.demo-form-section {
  background: #fafafa;
  padding: 40px 20px;
}

.demo-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.demo-form input[type="text"],
.demo-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.demo-form input[type="text"]:focus,
.demo-form input[type="email"]:focus {
  border-color: #4ca1af;
  outline: none;
}

.btn-submit {
  padding: 12px 30px;
  background: #4ca1af;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.form-notice {
  font-size: 0.9em;
  color: #777;
  margin-top: 10px;
  text-align: center;
}

/* Live Demo CTA Section */
.demo-cta {
  background: linear-gradient(135deg, #2c3e50, #4ca1af);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.demo-cta h2 {
  font-size: 2.4em;
  margin-bottom: 15px;
}

.demo-cta p {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #2c3e50;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  display: block;
  width: 100%;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.alert ul li {
  padding: 5px 0;
}