* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f6f2f2;
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
}

header.navbar {
  background-color: #f3afa8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.nav-left {
  font-weight: bold;
  font-size: 1.25rem;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
}

.video-demo {
  margin: 3rem auto;
  text-align: center;
  padding: 1rem;
}

.demo-video {
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


main.content {
  padding: 2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.description {
  max-width: 800px;
  font-family: 'Epilogue', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  width: 90%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.features {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.feature-img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 8px;
}

footer.footer {
  text-align: center;
  padding: 1.5rem 0;
  background-color: #ffffff;
  margin-top: 3rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.9rem;
  color: #666;
}
