body { font-family: Arial, sans-serif; margin: 0; background: #f7f7f7; color: #333; }
.navbar { background: #173e73; color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 1em 10%; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: white; text-decoration: none; }
.btn { background: #173e73; color: white; padding: .6em 1.2em; border: none; border-radius: 4px; text-decoration: none; }
.hero { text-align: center; padding: 60px 10%; background: #eaf3ff; }
.form-section { padding: 40px 10%; text-align: left; }
input, select, textarea { display: block; width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 4px; }
footer { text-align: center; padding: 20px; background: #173e73; color: #fff; margin-top: 40px; }
.service-box a { display: block; margin: 10px 0; color: #173e73; text-decoration: none; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px; border: 1px solid #ccc; }
@media (max-width: 768px) { .nav-links { flex-direction: column; } }
.services-intro {
  text-align: center;
  padding: 60px 10%;
  background: #f5f9ff;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 10%;
}
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}
.service-card h2 a {
  text-decoration: none;
  color: #173e73;
}
.customer-testimonials {
  background: #eaf3ff;
  padding: 50px 10%;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  font-style: italic;
}
.testimonial h4 {
  margin-top: 10px;
  font-style: normal;
  color: #173e73;
}
@media (max-width: 768px) {
  .services-list, .testimonial-grid { grid-template-columns: 1fr; }
}
