body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}
.hero {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-btn {
  background: #ffcc00;
  color: #111;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
.features, .how-it-works, .screenshots, .why-choose, .cta {
  padding: 40px 20px;
  text-align: center;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.feature {
  flex: 1 1 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
}
.screenshot-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.screenshot-gallery img {
  width: 250px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.footer {
  background: #222;
  color: #bbb;
  text-align: center;
  padding: 20px;
}
.footer a {
  color: #ffcc00;
  margin-left: 10px;
  text-decoration: none;
}
