:root {
  --bg: #ffffff;
  --card: #ffffff;
  --text: #111827;     /* near-black */
  --muted: #6b7280;    /* gray */
  --accent: #1d4ed8;   /* blue */
  --maxw: 860px;
}


* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);   /* <-- white */
  color: var(--text);
  line-height: 1.6;
}

.header-row{
  display: flex;
  align-items: center;           /* aligns name and photo vertically */
  justify-content: space-between;/* pushes photo to the right */
  gap: 20px;
}

.header-left h1{
  margin: 0 0 6px;
}

.headshot{
  width: 130px;                  /* adjust size */
  height: 130px;
  object-fit: cover;
  border-radius: 14px;           /* use 50% for circle */
  border: 1px solid rgba(17, 24, 39, 0.12);
}

@media (max-width: 700px){
  .header-row{
    flex-direction: column;
    text-align: center;
  }
}

.big-indent {
  padding-left: 40px;
}

.container {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
}

header {
  padding: 48px 0 20px;
}

h1 { margin: 0 0 6px; font-size: 2.2rem; }
.subtitle { margin: 0 0 16px; color: var(--muted); }

.nav a {
  display: inline-block;
  margin-right: 14px;
  color: var(--accent);
  text-decoration: none;
}
.nav a:hover { text-decoration: underline; }

main { padding: 10px 0 36px; }

.card {
  background: var(--card);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px;
  padding: 18px 18px;
  margin: 14px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}


h2 { margin-top: 0; text-align: center;font-size: 1.25rem; }
h3 { margin-top: 0; font-size: 1rem; }

a { color: var(--accent); }
ul { padding-left: 18px; }

.footer {
  padding: 18px 0 40px;
  color: var(--muted);
}


table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
caption {
  caption-side: top;
  font-weight: bold;
  margin-bottom: 10px;
}
th, td {
  border: 1px solid #000;
  padding: 8px;
  vertical-align: top;
  text-align: left;
  word-wrap: break-word;
  white-space: normal;
}
th {
  text-align: center;
  background-color: #f2f2f2;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.step-title {
  font-weight: bold;
  margin-top: 20px;
}

.note {
  font-weight: bold;
}
