/* Base reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #d4ebfa;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #0b2b59;
  line-height: 1.6;
}

/* Page layout container */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Header */
.site-header {
  margin-bottom: 40px;
}

.title {
  color: #0160a2;
  font-size: 3rem;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
}

.logo {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.tagline {
  font-weight: 600;
  color: #0c2b59;
  margin-bottom: 20px;
}

.contact {
  font-size: 0.9rem;
}

.email {
  color: #076ec7;
}

/* Main content spacing */
.content section {
  margin-bottom: 32px;
}

/* Accent text */
.accent {
  color: #0160a2;
}

/* Links */
a {
  color: #185955;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #185955;
}