body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f5f9fc;
  color: #333;
}

nav {
  background-color: #336699;
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #a1c4e7;
}

.hero {
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 2px solid #ccc;
  background: #e8f0fa;
}

.hero img {
  max-width: 100%;
  height: auto;
}

.hero p.tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003366;
  margin-top: 1rem;
}

.section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.section img {
  max-width: 300px;
  border-radius: 12px;
}

.service-text {
  flex: 1;
}

.section h2, .section h3, .section h4 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.section p {
  font-size: 1rem;
  color: #444;
}

footer {
  background-color: #336699;
  color: #fff;
  padding: 2rem 1rem;
  text-align: left;
  font-size: 0.95rem;
}

footer p {
  margin: 0.3rem 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
  display: inline-block;
}

.footer-links a:hover {
  color: #a1c4e7;
}

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

  .nav-links {
    flex-direction: column;
  }

  .hero img {
    width: 80%;
    height: auto;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Utility links */
.Phone, .Email {
  color: #fff;
}