/* ─── GOOGLE FONTS ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --primary:       #1d4ed8;
  --primary-light: #3b82f6;
  --primary-dark:  #1e3a8a;
  --accent:        #059669;
  --accent-hover:  #047857;
  --warning:       #d97706;
  --bg:            #f8fafc;
  --surface:       #ffffff;
  --surface-alt:   #f1f5f9;
  --text:          #0f172a;
  --text-muted:    #64748b;
  --border:        #e2e8f0;
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     12px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow:        0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --max-w:         1200px;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:     'Courier New', Courier, monospace;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.25; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 4rem 0; }
.section-sm { padding: 2rem 0; }
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  height: 68px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}
.site-logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; color: var(--primary-dark); }
.nav-primary { display: flex; list-style: none; gap: 0; flex: 1; }
.nav-item > a {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  display: block;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-item > a:hover { background: var(--surface-alt); color: var(--primary); text-decoration: none; }
.nav-item.has-dropdown { position: relative; }
.dropdown-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  min-width: 280px;
  z-index: 200;
}
.dropdown-mega a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.dropdown-mega a:hover { background: var(--surface-alt); color: var(--primary); text-decoration: none; }
.nav-item.has-dropdown:hover .dropdown-mega { display: block; }
.nav-cta-btn {
  margin-left: auto;
  background: var(--primary);
  color: white !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-cta-btn:hover { background: var(--primary-dark); text-decoration: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 60%, #3b82f6 100%);
  color: white;
  padding: 5rem 0 4rem;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.hero p  { font-size: 1.1rem; opacity: 0.9; max-width: 560px; margin-bottom: 2rem; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-download-pdf {
  background: var(--accent);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(5,150,105,0.4);
}
.btn-download-pdf:hover { background: var(--accent-hover); text-decoration: none; transform: translateY(-1px); }
.btn-download-word {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.83rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.btn-download-word:hover { background: rgba(255,255,255,0.25); text-decoration: none; }
.btn-secondary {
  background: white;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.btn-secondary:hover { box-shadow: var(--shadow); text-decoration: none; }

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: #1e3a8a;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.9rem 0;
}
.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,0.88);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ─── FORM PREVIEW CARD ──────────────────────────────────────── */
.form-preview-card {
  background: var(--surface);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.form-preview-card::before {
  content: "INTERVIEW CONSENT FORM";
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
  text-align: center;
}
.form-preview-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(-30deg);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(29,78,216,0.05);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
  user-select: none;
}
.form-field-row { margin-bottom: 1.1rem; }
.form-field-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.form-field-line {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
  min-height: 1.8rem;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.form-field-line.filled { color: var(--text); font-style: normal; font-weight: 500; }

/* ─── ONLINE FILL TOOL ───────────────────────────────────────── */
.fill-tool {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.fill-tool h2 { font-size: 1.2rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; color: var(--text); }
.fill-tool label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; }
.fill-tool input,
.fill-tool textarea,
.fill-tool select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  background: white;
  margin-bottom: 1.1rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fill-tool input:focus,
.fill-tool textarea:focus,
.fill-tool select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
}
.fill-tool textarea { min-height: 80px; resize: vertical; }
.fill-tool-actions { display: flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }
.btn-fill-primary {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--font);
  transition: background 0.2s;
}
.btn-fill-primary:hover { background: var(--accent-hover); }
.btn-fill-copy {
  background: var(--surface);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.73rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--font);
  transition: background 0.2s;
}
.btn-fill-copy:hover { background: #eff6ff; }

/* ─── SAMPLE TEXT BOX ────────────────────────────────────────── */
.sample-text-box {
  background: #fafafa;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 2rem;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-x: auto;
  color: var(--text);
}

/* ─── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); transform: translateY(-2px); }
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: 0.85rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.5rem; text-decoration: none; }

/* ─── FAQ ACCORDION ──────────────────────────────────────────── */
.faq-list { max-width: 820px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  font-size: 0.95rem;
  user-select: none;
  gap: 1rem;
}
.faq-question:hover { background: var(--surface-alt); }
.faq-arrow { font-size: 1rem; transition: transform 0.3s; flex-shrink: 0; color: var(--primary); }
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { background: #eff6ff; border-bottom: 1px solid var(--border); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ─── CHECKLIST ──────────────────────────────────────────────── */
.checklist { list-style: none; }
.checklist li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  line-height: 1.6;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 0.05rem; font-size: 1rem; }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb { padding: 1rem 0 0.5rem; font-size: 0.84rem; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; color: var(--text-muted); }

/* ─── SECTION HEADERS ────────────────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text); }
.section-header p  { color: var(--text-muted); font-size: 1rem; }
.badge {
  display: inline-block;
  background: #dbeafe;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.badge-green { background: #d1fae5; color: #065f46; }
.badge-amber { background: #fef3c7; color: #92400e; }

/* ─── STEP LIST ──────────────────────────────────────────────── */
.step-list { list-style: none; counter-reset: steps; }
.step-list li { counter-increment: steps; display: flex; gap: 1.25rem; margin-bottom: 2rem; }
.step-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--text); }
.step-content p  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* ─── DOWNLOAD BAR ───────────────────────────────────────────── */
.download-bar {
  background: linear-gradient(135deg, #064e3b, #059669);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.download-bar h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.download-bar p  { font-size: 0.88rem; opacity: 0.85; margin-bottom: 0; }
.download-btns   { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-dl-pdf {
  background: white;
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-dl-pdf:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.2); text-decoration: none; }
.btn-dl-word {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  padding: 0.73rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-dl-word:hover { background: rgba(255,255,255,0.25); text-decoration: none; }

/* ─── SECTION CATEGORY HEADINGS ──────────────────────────────── */
.category-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.category-title:first-of-type { margin-top: 0; }

/* ─── INFO BOX ───────────────────────────────────────────────── */
.info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 1.5rem 0;
}
.info-box strong { color: var(--primary); }
.warning-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--warning);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 1.5rem 0;
}

/* ─── CONTENT PROSE ──────────────────────────────────────────── */
.prose h2 { font-size: 1.5rem; font-weight: 800; margin: 2.5rem 0 0.75rem; color: var(--text); }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 2rem 0 0.6rem; color: var(--text); }
.prose p  { color: var(--text); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.35rem; color: var(--text); }
.prose strong { color: var(--text); }

/* ─── TABLE ──────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { background: var(--primary); color: white; padding: 0.75rem 1rem; text-align: left; font-weight: 700; }
.data-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); }
.data-table tr:nth-child(even) td { background: var(--surface-alt); }
.data-table tr:hover td { background: #eff6ff; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: #0f172a; color: rgba(255,255,255,0.75); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
footer h4  { color: white; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
footer ul  { list-style: none; }
footer li  { margin-bottom: 0.5rem; }
footer a   { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
footer a:hover { color: white; text-decoration: none; }
.footer-brand p { font-size: 0.84rem; line-height: 1.65; margin-top: 0.5rem; color: rgba(255,255,255,0.65); }
.footer-logo { font-weight: 800; font-size: 1.1rem; color: white; display: flex; align-items: center; gap: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: white; }

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 2rem; display: flex; gap: 2rem; justify-content: space-around; flex-wrap: wrap; margin: 2rem 0; }
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ─── COPY SUCCESS ───────────────────────────────────────────── */
.copy-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #1e293b;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transform: translateY(4rem);
  opacity: 0;
  transition: all 0.3s;
}
.copy-toast.show { transform: translateY(0); opacity: 1; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .nav-item > a { padding: 0.5rem 0.65rem; font-size: 0.83rem; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 1.8rem; }
  .section { padding: 2.5rem 0; }
  .nav-primary { display: none; position: fixed; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); flex-direction: column; padding: 1rem; gap: 0; z-index: 99; max-height: calc(100vh - 68px); overflow-y: auto; }
  .nav-primary.open { display: flex; }
  .nav-item > a { padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.95rem; }
  .dropdown-mega { position: static; display: none; box-shadow: none; border: none; border-left: 3px solid var(--primary); margin-left: 1rem; border-radius: 0; padding: 0.5rem 0; }
  .nav-item.has-dropdown.mobile-open .dropdown-mega { display: block; }
  .nav-toggle { display: flex; }
  .nav-cta-btn { display: none; }
  .download-bar { flex-direction: column; align-items: flex-start; }
  .trust-bar-items { gap: 1rem; justify-content: flex-start; }
  .stats-bar { gap: 1.25rem; }
  .fill-tool { padding: 1.25rem; }
  .form-preview-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-download-pdf, .btn-download-word { width: 100%; justify-content: center; }
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.55rem; }
  .section-header h2 { font-size: 1.4rem; }
}
