body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #e5e5e5;
  color: #222;
}

.hero {
  background: linear-gradient(135deg, #b8b8b8, #dcdcdc);
  color: #111;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.feature-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box h3 {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 15px;
  font-size: 1.5em;
  color: #222;
}

.feature-box p {
  font-size: 1em;
  color: #444;
}

.cta {
  text-align: center;
  padding: 50px 20px;
  background: #cccccc;
  color: #111;
}

.cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2em;
  margin-bottom: 10px;
}

.cta a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #333;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta a:hover {
  background: #000;
}
