body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

.install-button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

.hero {
  text-align: center;
  padding: 80px 0 40px 0;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.highlight {
  background-color: #ff6b6b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #4285f4;
  color: #fff;
  padding: 15px 30px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 20px;
}

.overview {
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 800px;
  background-color: #fff;
}

.overview h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.overview p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  padding: 0 30px;
}

.overview ul {
  list-style: none;
  padding: 0 30px;
  margin-bottom: 15px;
}

.overview li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px; /* Space for custom bullet */
}

.overview li::before {
  content: '•'; /* Using a simple dot for now, can be replaced with icons */
  position: absolute;
  left: 0;
  color: #4285f4; /* Match the button color or similar */
  font-weight: bold;
}

.overview a {
  display: block;
  text-align: right;
  padding-right: 30px;
  color: #4285f4;
  text-decoration: none;
  font-size: 14px;
}

.testimonials {
  text-align: center;
  padding: 50px 0;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
}

footer a {
  color: #555;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

.features {
  padding: 50px 0;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 30px;
}
