body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f8f9fb;
  color: #222;
  line-height: 1.6;
}
section {
  padding: 48px 20px;
  width: 100%;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.hero {
  text-align: center;
  background: linear-gradient(90deg, #4f8cff 0%, #6ed6ff 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(79,140,255,0.12);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.hero .subheadline {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.cta-btn {
  display: inline-block;
  background: #ff6b3d;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  margin: 16px 0;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #ff3
}

/* DEMO IMAGES SECTION */
.demo-images {
  margin-top: 32px;
  background: #f4f8ff;
  border-radius: 12px;
  padding: 32px 20px;
  box-shadow: 0 2px 12px rgba(79,140,255,0.06);
}
.demo-images h2 {
  text-align: center;
  margin-bottom: 24px;
}
.demo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.demo-gallery img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #e9eef7;
  transition: transform 0.2s, box-shadow 0.2s;
}
.demo-gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(79,140,255,0.18);
}