body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f4f6f9;
  color: #333;
}

.hero {
  background: linear-gradient(to right, #004080, #0073e6);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.cta {
  background: #ffcc00;
  color: #004080;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.services {
  padding: 40px;
  text-align: center;
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonials {
  background: #eaf2f8;
  padding: 40px;
  text-align: center;
}

.testimonial {
  margin: 20px auto;
  max-width: 600px;
  font-style: italic;
}

.blog {
  padding: 40px;
  background: #fff;
}

.blog ul {
  list-style: none;
  padding: 0;
}

.blog li {
  margin: 10px 0;
}

footer {
  background: #004080;
  color: white;
  text-align: center;
  padding: 20px;
}
