/* Reset and base styles */
* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  color: #222;
  min-height: 100vh;
}
.site-header {
  width: 100%;
  background: #0a2342;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  box-shadow: 0 2px 8px rgba(10,35,66,0.04);
}
.logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1976d2;
  background: #fff;
  padding: 6px 18px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(25,118,210,0.08);
}
.nav {
  display: flex;
  gap: 24px;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav a.active,
.nav a:hover {
  background: #1976d2;
  color: #fff;
}
.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 16px 32px 16px;
}
.hero {
  text-align: center;
  margin-bottom: 48px;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a2342;
  margin-bottom: 18px;
}
.subtitle {
  font-size: 1.3rem;
  color: #1976d2;
  margin-bottom: 28px;
}
.cta-btn {
  display: inline-block;
  background: #1976d2;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #0a2342;
}
.quick-services {
  margin-top: 32px;
}
.quick-services h2 {
  font-size: 1.5rem;
  color: #0a2342;
  margin-bottom: 18px;
}
.quick-services ul {
  list-style: none;
  padding: 0;
}
.quick-services li {
  font-size: 1.1rem;
  color: #222;
  background: #f4f8fb;
  margin-bottom: 10px;
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(25,118,210,0.04);
}
.services-list {
  list-style: none;
  padding: 0;
}
.services-list li {
  margin-bottom: 32px;
  background: #f4f8fb;
  border-radius: 4px;
  padding: 18px 22px;
  box-shadow: 0 1px 4px rgba(25,118,210,0.04);
}
.services-list h2 {
  color: #1976d2;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.site-footer {
  width: 100%;
  background: #0a2342;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  margin-top: 48px;
}
.site-footer a {
  color: #fff;
  text-decoration: underline;
}
.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}
.contact-info li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
  }
  .logo {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding: 4px 10px;
  }
  .nav {
    gap: 12px;
  }
  .main-content {
    padding: 28px 6px 18px 6px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .quick-services h2 {
    font-size: 1.1rem;
  }
  .services-list h2 {
    font-size: 1rem;
  }
}
