body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1e2f;
  color: white;
  padding: 1rem 2rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  color: white;
  text-decoration: none;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: #0072ff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.content {
  padding: 2rem;
}
.services {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.service-box {
  flex: 1;
  min-width: 200px;
}
.responsive-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 1rem;
  border-radius: 8px;
}
.demo-video {
  width: 100%;
  max-width: 600px;
  margin-top: 2rem;
  border-radius: 8px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin-top: 1rem;
}
input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
footer {
  text-align: center;
  padding: 1rem;
  background-color: #e0e0e0;
  margin-top: 2rem;
}
