:root {
  --blue: #0A3D91;
  --blue-light: #1F5FD1;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #777;
  --radius: 14px;
  --max: 860px;
  font-family: "Inter", sans-serif;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.lp {
  max-width: var(--max);
  width: 100%;
  background: var(--white);
}

.hero {
  text-align: center;
  padding: 60px 20px;
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
}

.hero h1 {
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 700;
}

.hero p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.section {
  padding: 50px 20px;
  text-align: center;
}

.section h2 {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--blue);
}

.section p {
  max-width: 600px;
  margin: auto;
  color: var(--muted);
  line-height: 1.6;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.feature {
  padding: 18px;
  background: #f3f7ff;
  border-left: 4px solid var(--blue-light);
  border-radius: var(--radius);
  text-align: left;
  max-width: 600px;
  margin: auto;
}

.feature strong {
  color: var(--blue);
  font-size: 16px;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.btn {
  background: var(--blue-light);
  color: white;
  padding: 16px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--blue);
}

footer {
  margin-top: 60px;
  background: var(--blue);
  padding: 30px 20px;
  text-align: center;
  color: white;
  line-height: 1.8;
  font-size: 14px;
  border-radius: var(--radius);
}
