body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}
header {
  background: #fff;
  border-bottom: 2px solid #ff0000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5em;
  font-weight: 700;
  color: #111;
}
.logo span { color: #ff0000; }
nav a {
  color: #111;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover { color: #ff0000; }
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #fff5f5;
}
.hero h1 {
  font-size: 2em;
  color: #111;
}
.hero h1 span { color: #ff0000; }
.hero p {
  color: #444;
  max-width: 600px;
  margin: 10px auto 30px;
}
.cta-button {
  background: #ff0000;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.cta-button:hover { background: #cc0000; }
.features, .reviews, .faq {
  padding: 50px 20px;
  text-align: center;
}
.features h2, .reviews h2, .faq h2 {
  color: #111;
  border-bottom: 2px solid #ff0000;
  display: inline-block;
  margin-bottom: 20px;
}
.feature-grid, .review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.card, .review {
  background: #fff5f5;
  padding: 20px;
  border: 1px solid #ffd6d6;
  border-radius: 10px;
}
.faq-item {
  max-width: 700px;
  margin: 20px auto;
  text-align: left;
}
.faq-item h3 { color: #ff0000; }
.disclosure {
  background: #fff0f0;
  color: #555;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
footer {
  background: #ff0000;
  color: #fff;
  text-align: center;
  padding: 15px;
}