@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: #f7f9fc;
  color: #333;
}

header {
  background: linear-gradient(135deg, #4a90e2, #9013fe);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
}

.downloads, .features {
  margin-bottom: 40px;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #4a90e2;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: #4a90e2;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #357abd;
  transform: translateY(-2px);
}

.features ul {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.features li {
  background: #fff;
  margin: 10px 0;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
