
:root {
  --deepBlue: #2B4A67;
  --sand: #D9CBB4;
  --olive: #8A9A5B;
  --lightBlue: #A9C8E2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937;
  background: var(--sand);
}

a { color: var(--deepBlue); text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }

/* Header / Nav */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(0,0,0,.08); }
.header-inner { height: 64px; display: flex; justify-content: space-between; align-items: center; }
.nav a { margin-left: 20px; font-size: 14px; }

/* Buttons */
.btn { display:inline-block; padding:12px 18px; border-radius: 16px; font-weight:600; }
.btn-primary { background: var(--olive); color: #fff; }
.btn-primary:hover { filter: brightness(0.95); }
.btn-outline { border:1px solid var(--deepBlue); color: var(--deepBlue); }
.btn-outline:hover { background: rgba(43,74,103,.06); }

/* Layout */
.topbar { background: var(--deepBlue); color:#fff; font-size: 13px; }
.topbar-inner { padding: 8px 0; display:flex; justify-content:space-between; gap:12px; align-items:center; }

.hero { padding: 64px 0; }
.grid { display:grid; gap:24px; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.section { padding: 64px 0; }
.section h2 { color: var(--deepBlue); font-size: 32px; margin: 0 0 8px; }
.section p.lead { color: var(--deepBlue); font-size: 18px; margin: 0 0 24px; }

.card { background:#fff; border:1px solid rgba(0,0,0,.08); border-radius: 16px; box-shadow: 0 1px 6px rgba(0,0,0,.05); padding: 16px; }

.list { list-style:none; padding:0; margin:0; }
.list li { margin: 8px 0; padding-left: 22px; position: relative; color: var(--deepBlue); }
.list li::before { content: "✓"; position:absolute; left:0; color: var(--olive); }

.input, textarea { width:100%; padding:10px 12px; border-radius:12px; border:1px solid rgba(0,0,0,.15); background:#fff; }
label.consent { display:flex; gap:8px; font-size:12px; color:#444; }

/* Media */
img.resp { max-width: 100%; height: auto; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,.12); }

/* Portrait block – visual refinement */
.portrait-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e9e3d7; /* fallback if bg image missing */
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  max-width: 560px;
  margin: 0 auto;
}
.portrait-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(12px) saturate(110%);
  transform: scale(1.12);
}
/* Soft gradient for text legibility and a calmer look */
.portrait-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(217,203,180,0.18) 0%, rgba(43,74,103,0.10) 100%);
  pointer-events: none;
}
.portrait-fg {
  position: relative;
  padding: 16px;
}
.portrait-fg img {
  display: block;
  margin: 0 auto;
  max-width: 92%;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
  border: 2px solid rgba(255,255,255,.7);
  background: #fff;
}

/* Footer */
footer { border-top: 1px solid rgba(0,0,0,.08); background:#fff; }
.footer-inner { padding: 24px 0; display:flex; flex-wrap:wrap; justify-content: space-between; gap:12px; color:#6b7280; }

.badge { display:inline-block; background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:12px; padding:6px 10px; color:#334155; }
.logo { height:40px; }

.text-muted { color:#6b7280 }
.cookie { position:fixed; left:0; right:0; bottom:0; background: rgba(255,255,255,.95); border-top:1px solid rgba(0,0,0,.08); padding:12px 16px; display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.cookie .btn { padding:8px 14px; border-radius:12px; }
.hr { height:1px; background: rgba(0,0,0,.08); margin: 24px 0; }
.tagline { color: var(--deepBlue); font-weight: 600; }
.small { font-size: 13px; }

/* Hero image polish */
.hero figure.captioned img {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}

/* Responsive polish */
@media (max-width: 899px) {
  .header-inner { height: 60px; }
  .nav a { margin-left: 14px; }
  .section { padding: 48px 0; }
  .section h2 { font-size: 28px; }
}
.faq-wrapper {
    border: 2px solid #2B4A67;
    border-radius: 10px;
    padding: 20px;
}
#faq h2 {
    color: #2B4A67;
    margin-bottom: 16px;
}