<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  font-family: sans-serif;
  color: #1e1e1e;
}

.navbar {
  background: #0c2e45;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar .logo span {
  font-weight: normal;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.hero {
  display: flex;
  background: linear-gradient(to right, #0c2e45, #0c2e45 50%, white 50%);
  color: white;
  padding: 2rem;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
}

.hero-text button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #345c7c;
  color: white;
  border: none;
  cursor: pointer;
}

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

.services, .why, .about {
  padding: 2rem;
  background-color: #f5f5f5;
}

.services h2, .why h2, .about h2 {
  margin-bottom: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-item {
  background: white;
  padding: 1rem;
  border: 1px solid #ddd;
}

.why ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.sample-report {
  margin-top: 1rem;
}

.sample-report button {
  padding: 0.5rem 1rem;
  background: #0c2e45;
  color: white;
  border: none;
}

header img {
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.icon-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: sans-serif;
  font-size: 18px;
  padding: 20px;
}

.icon-nav a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.icon-nav a:hover {
  color: #0073e6;
}</pre></body></html>