
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #2A4759;
}
header {
  text-align: center;
  background: linear-gradient(90deg, #F79B72, #2A4759);
  color: white;
  padding: 2rem 1rem;
}
.logo {
  width: 80px;
  border-radius: 16px;
}
.cta-button {
  margin-top: 1rem;
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #F79B72;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.features {
  padding: 2rem;
}
.features ul {
  list-style: none;
  padding: 0;
}
.features li {
  margin: 1rem 0;
  font-size: 1.1rem;
}
.gallery {
  background: #f4f4f4;
  padding: 2rem;
  text-align: center;
}
.screenshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.screenshots img {
  width: 160px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
footer {
  text-align: center;
  padding: 1rem;
  background: #2A4759;
  color: white;
}
