body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f7fb;
  margin: 0;
  padding: 0;
  color: #222a3f;
}

header {
  background-color: #2358ad; /* update to match your logo blue if needed */
  color: #ffffff;
  text-align: center;
  padding: 24px 12px 12px 12px;
}

header img {
  margin-bottom: 6px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  font-size: 1.1em;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 1000px;
  margin: 24px auto 0 auto;
  padding: 0 16px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.service {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e7ef;
  padding: 18px 10px;
  flex: 1 1 200px;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(35, 88, 173, 0.08);
}

.service h3 {
  color: #2358ad;
}

button {
  background: #2358ad;
  color: #fff;
  font-weight: bold;
  padding: 9px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
  font-size: 1em;
  transition: background 0.2s;
}

button:hover {
  background: #184481;
}

footer {
  background: #e2e7ef;
  color: #222a3f;
  padding: 28px 16px;
  text-align: center;
  font-size: 1em;
}

.contact-info img {
  display: block;
  margin: 12px auto 0 auto;
  border-radius: 40px;
  box-shadow: 0 1px 6px rgba(35, 88, 173, 0.12);
  max-width: 70px;
}

.disclaimer {
  margin-top: 12px;
  font-size: 0.96em;
  color: #555;
}
