body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f9f9f9;
}

.hero {
  background: #0b3d91;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

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

.text-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.text-image.reverse {
  flex-direction: row-reverse;
}

.text-image img {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 10px;
}

.text-image div {
  flex: 2 1 400px;
}

.features, .services, .testimonial, .final-cta {
  margin: 40px 0;
}

.features ul, .services ul {
  list-style: none;
  padding: 0;
}

.features li, .services li {
  margin-bottom: 10px;
}

.services a, .testimonial a {
  color: #0b3d91;
  text-decoration: none;
  font-weight: bold;
}

.cta-btn {
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .text-image {
    flex-direction: column;
  }
}
