/* Shared with Home page — header, nav, footer, color system */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: #eee; }
.page { max-width: 1200px; margin: 0 auto; background: #fff; }

/* HEADER */
header { display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 8px; padding: 22px 40px; background: #0c447c; border-bottom: 1px solid rgba(255,255,255,0.55); }
.topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.wordmark { font-size: 32px; font-weight: 700; color: #fff; letter-spacing: 0.2px; text-align: left; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 17px; font-weight: 700; color: #fff; text-decoration: none; white-space: nowrap; }
.header-phone svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }
.header-phone:hover { color: #cfe0ef; }
.header-phone:hover svg { fill: #cfe0ef; }
.byline { font-size: 18px; font-weight: 400; font-style: italic; color: #cfe0ef; letter-spacing: 0.2px; text-align: left; margin-bottom: 6px; }
nav { display: flex; justify-content: space-between; width: 100%; }
nav a { font-size: 17px; color: #fff; text-decoration: none; font-weight: 500; }
nav a:hover { color: #cfe0ef; }
nav a.cta-nav { text-decoration: underline; text-underline-offset: 4px; font-weight: 700; }
nav a.active { border-bottom: 2px solid #fff; padding-bottom: 2px; }

/* FOOTER */
footer { padding: 32px 40px; text-align: center; font-size: 12px; color: #888; border-top: 1px solid #e5e2d8; }
footer a { color: #888; }

/* PAGE HEADER BAND (interior pages) */
.pagehead { background: #0c447c; padding: 44px 40px 40px; }
.pagehead h1 { color: #fff; font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.pagehead .tagline { color: #fff; font-size: 17px; font-style: normal; font-weight: 500; }

/* CONTENT */
.content { padding: 40px; max-width: 900px; margin: 0 auto; background: #b7c3cf; }
.content > .intro {
  font-size: 19px;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: #fff;
  border-left: 5px solid #0c447c;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(12,68,124,0.12);
}
.content h2 { font-size: 26px; font-weight: 700; color: #0c447c; margin: 0 0 16px; letter-spacing: 0.2px; }

.content .section {
  background: #fff;
  padding: 36px 40px;
  margin-bottom: 28px;
  border-radius: 10px;
  border: 1px solid #c7d0d8;
  box-shadow: 0 6px 18px rgba(12,68,124,0.14);
}
.content .section:last-of-type { margin-bottom: 0; }

.content p { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 12px; }
.content p.label {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  padding-left: 14px;
  border-left: 4px solid #0c447c;
}
.content ul { margin: 0 0 10px 20px; }
.content li { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 6px; }
.content ol { margin: 0 0 10px 20px; }
.content ol li { font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.content ol li b { color: #1a1a1a; }
.content ol ol { margin: 8px 0 10px 22px; }
.content ol ol li { margin-bottom: 4px; }

.content table { width: 100%; border-collapse: collapse; margin: 10px 0 16px; font-size: 14px; }
.content th { background: #f4f2ec; text-align: left; padding: 10px 12px; border-bottom: 1px solid #e5e2d8; color: #1a1a1a; }
.content td { padding: 10px 12px; border-bottom: 1px solid #eee; color: #444; vertical-align: top; }

.twocol { display: flex; gap: 28px; align-items: flex-start; }
.twocol .text { flex: 1; }
.twocol .thumb { flex: 1.4; text-align: center; }
.twocol .thumb img { width: 100%; height: auto; border-radius: 6px; display: block; }
.twocol .thumb img.framed { border: 1px solid #0c447c; }
.twocol .thumb .cap { font-size: 12px; color: #888; font-style: italic; margin-top: 6px; }

.fullimg { margin: 10px 0 8px; }
.fullimg img { width: 100%; height: auto; border-radius: 6px; display: block; }
.fullimg .cap { font-size: 12px; color: #888; font-style: italic; margin-top: 6px; }

.closing-link { text-align: center; padding: 30px 40px 10px; font-size: 14px; color: #0c447c; font-style: italic; }
.closing-link a { color: #0c447c; font-weight: 600; }

.imgnote { font-size: 12px; color: #1155cc; font-style: italic; margin: 8px 0; }

@media (max-width: 640px) {
  .twocol { flex-direction: column; }
  nav { flex-wrap: wrap; gap: 10px 16px; }
  header { padding: 18px 16px; }
  .wordmark { font-size: 24px; white-space: nowrap; }
  .header-phone { font-size: 14px; }
  .header-phone svg { width: 14px; height: 14px; }
  .byline { font-size: 15px; }
}
