@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --hd-bg: #faf8f3;
  --hd-bg-alt: #f2ede2;
  --hd-surface: #ffffff;
  --hd-ink: #23262b;
  --hd-ink-soft: #575b62;
  --hd-ink-faint: #8b8f96;
  --hd-primary: #1e3a4c;
  --hd-primary-soft: #2f5468;
  --hd-accent: #b8863f;
  --hd-accent-soft: #d9b676;
  --hd-line: #d9d3c5;
  --hd-line-strong: #23262b;
  --hd-shadow-sm: 0 1px 2px rgba(35,38,43,.06);
  --hd-shadow-md: 0 6px 16px -4px rgba(35,38,43,.10), 0 2px 6px -2px rgba(35,38,43,.06);
  --hd-shadow-lg: 0 24px 48px -16px rgba(35,38,43,.20), 0 10px 20px -10px rgba(35,38,43,.10);
  --hd-radius-sm: 6px;
  --hd-radius-md: 14px;
  --hd-radius-lg: 26px;
  --hd-space-xs: .5rem;
  --hd-space-sm: 1rem;
  --hd-space-md: 1.75rem;
  --hd-space-lg: 3rem;
  --hd-space-xl: 5rem;
  --hd-space-2xl: 7.5rem;
  --hd-ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  background: var(--hd-bg);
  color: var(--hd-ink);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
h1,h2,h3,h4 { font-weight: 700; margin: 0 0 .6em; color: var(--hd-ink); letter-spacing: -.01em; }
p { margin: 0 0 1.1em; color: var(--hd-ink-soft); }
address { font-style: normal; }

.hd-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.hd-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hd-accent);
  border-bottom: 1px solid var(--hd-accent);
  padding-bottom: .3rem;
  margin-bottom: 1.1rem;
}
.hd-on-gradient { color: #fff; border-color: rgba(255,255,255,.6); }
.hd-centered { text-align: center; }

.hd-h1 { font-size: clamp(2.2rem, 5vw + 1rem, 3.6rem); line-height: 1.1; }
.hd-h2 { font-size: clamp(1.7rem, 3vw + 1rem, 2.5rem); line-height: 1.2; }
.hd-h3 { font-size: clamp(1.25rem, 1.4vw + 1rem, 1.5rem); line-height: 1.3; }
.hd-h4 { font-size: 1.1rem; line-height: 1.35; }
.hd-lead { font-size: 1.15rem; max-width: 62ch; margin-left: auto; margin-right: auto; }
.hd-lead.hd-centered { margin-bottom: 2.5rem; }


.hd-cookie-bar {
  max-height: 0;
  overflow: hidden;
  background: var(--hd-bg-alt);
  border-bottom: 1px solid transparent;
  transition: max-height .4s var(--hd-ease), border-color .4s var(--hd-ease);
}
.hd-cookie-bar.hd-visible { max-height: fit-content; border-bottom-color: var(--hd-line); }
.hd-cookie-inner {
  max-width: 1200px; margin: 0 auto; padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.hd-cookie-text { margin: 0; font-size: .88rem; color: var(--hd-ink-soft); flex: 1 1 320px; }
.hd-cookie-text a { color: var(--hd-primary); border-bottom: 1px solid var(--hd-primary); }
.hd-cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }


.hd-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.8rem; font-weight: 600; font-size: .95rem;
  border-radius: var(--hd-radius-sm); transition: all .3s var(--hd-ease);
  min-height: 44px; white-space: nowrap;
}
.hd-btn-solid { background: var(--hd-primary); color: #fff; border: 1px solid var(--hd-primary); }
.hd-btn-solid:hover { background: var(--hd-primary-soft); border-color: var(--hd-primary-soft); transform: translateY(-2px); box-shadow: var(--hd-shadow-md); }
.hd-btn-line { background: transparent; color: var(--hd-ink); border: 1px solid var(--hd-line-strong); }
.hd-btn-line:hover { background: var(--hd-ink); color: #fff; transform: translateY(-2px); box-shadow: var(--hd-shadow-md); }
.hd-btn-sm { padding: .55rem 1.1rem; font-size: .82rem; min-height: 38px; }
.hd-btn-full { width: 100%; }


.hd-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,248,243,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--hd-ease), box-shadow .35s var(--hd-ease), border-color .35s var(--hd-ease);
}
.hd-header.hd-scrolled { background: var(--hd-bg); box-shadow: var(--hd-shadow-md); border-bottom-color: var(--hd-line); }
.hd-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.hd-logo { display: flex; align-items: center; gap: .6rem; }
.hd-logo-img { width: 34px; height: 34px; }
.hd-logo-text { font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; }
.hd-nav { display: none; }
.hd-nav-list { display: flex; gap: 2.2rem; }
.hd-nav-link {
  font-weight: 600; font-size: .95rem; color: var(--hd-ink-soft);
  padding-bottom: .3rem; border-bottom: 1px solid transparent;
  transition: color .3s var(--hd-ease), border-color .3s var(--hd-ease);
}
.hd-nav-link:hover, .hd-nav-link.active { color: var(--hd-ink); border-bottom-color: var(--hd-accent); }

.hd-menu-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; align-items: center;
}
.hd-menu-toggle span {
  width: 22px; height: 1.5px; background: var(--hd-ink); border-radius: 2px;
  transition: transform .35s var(--hd-ease), opacity .35s var(--hd-ease);
}
.hd-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hd-menu-toggle.open span:nth-child(2) { opacity: 0; }
.hd-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hd-mobile-menu {
  max-height: 0; overflow: hidden;
  background: var(--hd-bg); border-top: 1px solid transparent;
  transition: max-height .4s var(--hd-ease), border-color .4s var(--hd-ease);
}
.hd-mobile-menu.open { max-height: 400px; border-top-color: var(--hd-line); }
.hd-mobile-list { padding: .5rem 1.5rem 1.2rem; }
.hd-mobile-list li { border-bottom: 1px solid var(--hd-line); }
.hd-mobile-list li:last-child { border-bottom: none; }
.hd-mobile-list a {
  display: block; padding: .95rem 0; font-weight: 600; font-size: 1rem;
  color: var(--hd-ink); transition: padding-left .3s var(--hd-ease), color .3s var(--hd-ease);
}
.hd-mobile-list a:hover { padding-left: .5rem; color: var(--hd-primary); }

@media (min-width: 900px) {
  .hd-nav { display: block; }
  .hd-menu-toggle { display: none; }
  .hd-mobile-menu { display: none; }
}


.hd-breadcrumb-bar { background: var(--hd-bg-alt); border-bottom: 1px solid var(--hd-line); }
.hd-breadcrumb { display: flex; gap: .5rem; padding: .85rem 0; font-size: .85rem; color: var(--hd-ink-faint); flex-wrap: wrap; }
.hd-breadcrumb li:not(:last-child)::after { content: '/'; margin-left: .5rem; color: var(--hd-line); }
.hd-breadcrumb a { color: var(--hd-ink-soft); transition: color .3s var(--hd-ease); }
.hd-breadcrumb a:hover { color: var(--hd-primary); }
.hd-breadcrumb li[aria-current] { color: var(--hd-ink); font-weight: 600; }


.hd-hero { position: relative; padding: var(--hd-space-2xl) 0 var(--hd-space-xl); overflow: hidden; }
.hd-hero-pattern {
  position: absolute; inset: 0; display: grid;
  grid-template-columns: repeat(6, 1fr); align-items: center; justify-items: center;
  pointer-events: none; opacity: 1;
}
.hd-hero-pattern i { font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--hd-primary); opacity: .07; }
.hd-hero-pattern i:nth-child(3n) { color: var(--hd-accent); opacity: .09; }
.hd-hero-content { position: relative; display: flex; justify-content: center; }
.hd-hero-card {
  background: var(--hd-surface); border: 1px solid var(--hd-line);
  border-radius: var(--hd-radius-lg); box-shadow: var(--hd-shadow-lg);
  padding: clamp(2rem, 4vw, 3.5rem); max-width: 720px; text-align: center;
}
.hd-hero-title { font-size: clamp(2rem, 4.5vw + 1rem, 3.2rem); line-height: 1.15; margin-bottom: .9rem; }
.hd-hero-text { font-size: 1.1rem; max-width: 56ch; margin: 0 auto 1.8rem; }
.hd-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


.hd-section { padding: var(--hd-space-xl) 0; }
.hd-section-alt { background: var(--hd-bg-alt); }
.hd-section-gradient {
  background: linear-gradient(135deg, var(--hd-primary) 0%, var(--hd-primary-soft) 55%, #3d6579 100%);
  padding: var(--hd-space-2xl) 0;
}
.hd-page-hero { padding: var(--hd-space-xl) 0 var(--hd-space-lg); }
.hd-page-hero .hd-lead { margin-left: 0; margin-right: 0; }

.hd-intro-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hd-intro-image img { border-radius: var(--hd-radius-md); box-shadow: var(--hd-shadow-md); border: 1px solid var(--hd-line); }
@media (min-width: 900px) {
  .hd-intro-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hd-reverse .hd-intro-text { order: 2; }
  .hd-reverse .hd-intro-image { order: 1; }
}


.hd-roles-grid { display: grid; grid-template-columns: 1fr; gap: 1.8rem; margin-top: 2.5rem; }
@media (min-width: 780px) { .hd-roles-grid { grid-template-columns: repeat(3, 1fr); } }
.hd-card {
  background: var(--hd-surface); border: 1px solid var(--hd-line); border-radius: var(--hd-radius-md);
  box-shadow: var(--hd-shadow-sm); overflow: hidden; transition: transform .35s var(--hd-ease), box-shadow .35s var(--hd-ease);
}
.hd-card:hover { transform: translateY(-6px); box-shadow: var(--hd-shadow-lg); }
.hd-card-img { height: 200px; width: 100%; object-fit: cover; }
.hd-card-body { padding: 1.8rem; }
.hd-icon-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--hd-line-strong);
  margin-bottom: 1rem; font-size: 1.1rem; color: var(--hd-primary);
  transition: background .3s var(--hd-ease), color .3s var(--hd-ease);
}
.hd-card:hover .hd-icon-circle { background: var(--hd-primary); color: #fff; }


.hd-modules-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; margin-top: 2.8rem; }
@media (min-width: 700px) { .hd-modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .hd-modules-grid { grid-template-columns: repeat(3, 1fr); } }
.hd-module-card {
  background: rgba(255,255,255,.96); border-radius: var(--hd-radius-md);
  padding: 2rem 1.8rem; box-shadow: var(--hd-shadow-lg);
  transition: transform .35s var(--hd-ease), box-shadow .35s var(--hd-ease);
  border: 1px solid rgba(255,255,255,.4);
}
.hd-module-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -18px rgba(0,0,0,.35); }
.hd-module-number {
  display: inline-block; font-size: 1.6rem; font-weight: 800; color: var(--hd-accent);
  border-bottom: 1px solid var(--hd-accent); padding-bottom: .2rem; margin-bottom: 1rem;
}


.hd-timeline-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 960px) { .hd-timeline-layout { grid-template-columns: .9fr 1.1fr; } }
.hd-timeline-image { border-radius: var(--hd-radius-md); margin-top: 1.8rem; border: 1px solid var(--hd-line); box-shadow: var(--hd-shadow-md); }
.hd-timeline { position: relative; padding-left: 2.2rem; border-left: 1px solid var(--hd-line); }
.hd-timeline-item { position: relative; padding-bottom: 2.4rem; }
.hd-timeline-item:last-child { padding-bottom: 0; }
.hd-timeline-item::before {
  content: ''; position: absolute; left: -2.34rem; top: .3rem;
  width: 11px; height: 11px; border-radius: 50%; background: var(--hd-bg);
  border: 1px solid var(--hd-primary);
}
.hd-timeline-date { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--hd-accent); margin-bottom: .4rem; }


.hd-cta-band { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hd-cta-img { border-radius: var(--hd-radius-md); border: 1px solid var(--hd-line); box-shadow: var(--hd-shadow-md); }
@media (min-width: 900px) { .hd-cta-band { grid-template-columns: 1fr 1fr; } }

.hd-split-image-text { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hd-split-image { border-radius: var(--hd-radius-md); border: 1px solid var(--hd-line); box-shadow: var(--hd-shadow-md); }
@media (min-width: 900px) {
  .hd-split-image-text { grid-template-columns: 1fr 1fr; }
  .hd-reverse.hd-split-image-text .hd-split-text { order: 2; }
  .hd-reverse.hd-split-image-text .hd-split-image { order: 1; }
}


.hd-values-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .hd-values-layout { grid-template-columns: .8fr 1.2fr; } }
.hd-values-list { display: grid; gap: 1.6rem; }
.hd-value-item { position: relative; padding-left: 1.6rem; }
.hd-value-line { position: absolute; left: 0; top: .35rem; bottom: .35rem; width: 1px; background: var(--hd-accent); }


.hd-steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; margin-top: 2.5rem; }
@media (min-width: 700px) { .hd-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .hd-steps-grid { grid-template-columns: repeat(4, 1fr); } }
.hd-step-card {
  background: var(--hd-surface); border: 1px solid var(--hd-line); border-radius: var(--hd-radius-md);
  padding: 1.8rem; text-align: center; box-shadow: var(--hd-shadow-sm);
  transition: transform .35s var(--hd-ease), box-shadow .35s var(--hd-ease);
}
.hd-step-card:hover { transform: translateY(-6px); box-shadow: var(--hd-shadow-lg); }
.hd-step-number {
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hd-primary);
  color: var(--hd-primary); font-weight: 700;
}
.hd-cta-inline {
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--hd-line);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.hd-cta-inline p { margin: 0; max-width: 46ch; }


.hd-accordion { max-width: 820px; margin: 2.5rem auto 0; display: grid; gap: 1px; }
.hd-accordion-narrow { max-width: 780px; }
.hd-accordion-item { background: var(--hd-surface); border: 1px solid var(--hd-line); border-radius: var(--hd-radius-sm); margin-bottom: .8rem; overflow: hidden; }
.hd-accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.4rem; font-weight: 600; font-size: 1rem; text-align: left;
  color: var(--hd-ink); transition: color .3s var(--hd-ease);
}
.hd-accordion-trigger i { transition: transform .35s var(--hd-ease); color: var(--hd-accent); }
.hd-accordion-item.open .hd-accordion-trigger i { transform: rotate(180deg); }
.hd-accordion-item.open .hd-accordion-trigger { color: var(--hd-primary); }
.hd-accordion-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--hd-ease); }
.hd-accordion-panel p { padding: 0 1.4rem 1.3rem; margin: 0; }


.hd-footer { border-top: 1px solid var(--hd-line); }
.hd-footer-quote { background: var(--hd-primary); color: #fff; padding: var(--hd-space-xl) 0; }
.hd-quote p { color: #fff; font-size: clamp(1.3rem, 2.4vw + .6rem, 2rem); font-weight: 600; line-height: 1.4; max-width: 46ch; margin: 0 0 1.2rem; }
.hd-quote cite { font-style: normal; font-size: .9rem; color: var(--hd-accent-soft); letter-spacing: .04em; }
.hd-footer-main { background: var(--hd-bg-alt); padding: var(--hd-space-lg) 0; }
.hd-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
@media (min-width: 780px) { .hd-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.hd-footer-col h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; color: var(--hd-ink); }
.hd-footer-col ul li { margin-bottom: .6rem; }
.hd-footer-col a { color: var(--hd-ink-soft); transition: color .3s var(--hd-ease); }
.hd-footer-col a:hover { color: var(--hd-primary); }
.hd-footer-col p { font-size: .92rem; }
.hd-footer-bottom { padding: 1.3rem 0; border-top: 1px solid var(--hd-line); }
.hd-footer-bottom p { margin: 0; font-size: .82rem; text-align: center; color: var(--hd-ink-faint); }


.hd-contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 960px) { .hd-contact-grid { grid-template-columns: 1.1fr .9fr; } }
.hd-form { display: grid; gap: 1.4rem; margin-top: 1.8rem; }
.hd-form-group { display: grid; gap: .5rem; }
.hd-form-group label { font-weight: 600; font-size: .92rem; }
.hd-form-group input, .hd-form-group textarea {
  border: 1px solid var(--hd-line); border-radius: var(--hd-radius-sm); padding: .85rem 1rem;
  font-family: inherit; font-size: 1rem; background: var(--hd-surface); color: var(--hd-ink);
  transition: border-color .3s var(--hd-ease), box-shadow .3s var(--hd-ease);
}
.hd-form-group input:focus, .hd-form-group textarea:focus {
  outline: none; border-color: var(--hd-primary); box-shadow: 0 0 0 3px rgba(30,58,76,.12);
}
.hd-form-check { display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; color: var(--hd-ink-soft); }
.hd-form-check input { margin-top: .3rem; width: 18px; height: 18px; flex-shrink: 0; }
.hd-form-check a { color: var(--hd-primary); border-bottom: 1px solid var(--hd-primary); }
.hd-contact-info { display: grid; gap: 1.6rem; align-content: start; }
.hd-contact-img { border-radius: var(--hd-radius-md); border: 1px solid var(--hd-line); box-shadow: var(--hd-shadow-md); }
.hd-info-block { display: flex; gap: 1rem; align-items: flex-start; }
.hd-info-block .hd-icon-circle { margin-bottom: 0; flex-shrink: 0; }
.hd-info-block h3 { margin-bottom: .3rem; }
.hd-info-block p { margin: 0; }
.hd-map-frame { border-radius: var(--hd-radius-md); overflow: hidden; border: 1px solid var(--hd-line); box-shadow: var(--hd-shadow-md); }


.hd-thanks-section { padding: var(--hd-space-2xl) 0; }
.hd-thanks-content { max-width: 640px; margin: 0 auto; text-align: center; }
.hd-thanks-cta { margin: 1.8rem 0 3.5rem; }
.hd-mini-timeline { text-align: left; display: grid; gap: 1.8rem; border-left: 1px solid var(--hd-line); padding-left: 1.8rem; }
.hd-mini-item { position: relative; display: flex; gap: 1rem; align-items: flex-start; }
.hd-mini-icon {
  position: absolute; left: -2.42rem; top: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .75rem;
  background: var(--hd-bg); border: 1px solid var(--hd-line-strong); color: var(--hd-ink-faint);
}
.hd-mini-item.done .hd-mini-icon { border-color: var(--hd-primary); color: var(--hd-primary); }
.hd-mini-item.active .hd-mini-icon { background: var(--hd-primary); color: #fff; }
.hd-mini-item.upcoming { opacity: .55; }
.hd-mini-item h2 { margin-bottom: .2rem; }
.hd-mini-item p { margin: 0; }


.hd-legal-header { padding: var(--hd-space-lg) 0 var(--hd-space-sm); }
.hd-legal-updated { color: var(--hd-ink-faint); font-size: .9rem; }
.hd-legal-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .hd-legal-layout { grid-template-columns: 260px 1fr; } }
.hd-toc-sidebar { display: none; }
@media (min-width: 960px) {
  .hd-toc-sidebar { display: block; position: sticky; top: 6.5rem; }
}
.hd-toc { display: grid; gap: .2rem; border-left: 1px solid var(--hd-line); padding-left: 1.2rem; }
.hd-toc a { font-size: .9rem; color: var(--hd-ink-soft); padding: .5rem 0; border-left: 1px solid transparent; margin-left: -1.21rem; padding-left: 1.2rem; transition: color .3s var(--hd-ease), border-color .3s var(--hd-ease); }
.hd-toc a:hover { color: var(--hd-primary); }
.hd-toc a.active { color: var(--hd-primary); font-weight: 700; border-left-color: var(--hd-primary); }
.hd-toc-mobile { display: block; background: var(--hd-surface); border: 1px solid var(--hd-line); border-radius: var(--hd-radius-sm); padding: 1rem 1.2rem; margin-bottom: 1rem; }
.hd-toc-mobile summary { font-weight: 700; cursor: pointer; }
.hd-toc-mobile .hd-toc { margin-top: 1rem; border-left: none; padding-left: 0; }
.hd-toc-mobile .hd-toc a { margin-left: 0; padding-left: .8rem; border-left: 1px solid var(--hd-line); }
@media (min-width: 960px) { .hd-toc-mobile { display: none; } }
.hd-legal-content section { margin-bottom: 2.6rem; scroll-margin-top: 6.5rem; }
.hd-legal-content h2 { font-size: 1.35rem; border-bottom: 1px solid var(--hd-line); padding-bottom: .6rem; margin-bottom: 1rem; }

.hd-impressum-content h2 { font-size: 1.25rem; margin-top: 2.4rem; border-bottom: 1px solid var(--hd-line); padding-bottom: .5rem; }
.hd-impressum-content h2:first-child { margin-top: 0; }
.hd-legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; }
.hd-legal-table td { padding: .65rem .9rem; border: 1px solid var(--hd-line); font-size: .92rem; }
.hd-legal-table td:first-child { font-weight: 600; width: 38%; background: var(--hd-bg-alt); }

@media (max-width: 640px) {
  .hd-legal-table { display: block; }
  .hd-legal-table tr { display: block; margin-bottom: .6rem; border: 1px solid var(--hd-line); border-radius: var(--hd-radius-sm); overflow: hidden; }
  .hd-legal-table td { display: block; border: none; border-bottom: 1px solid var(--hd-line); }
  .hd-legal-table td:last-child { border-bottom: none; }
}