:root {
  --color-very-light: #e6ecff;
  --color-light: #ced9ff;
  --color-base: #b4c1ff;
  --color-medium: #8ba2ff;
  --color-dark: #5373f2;

  --color-text: #111111;
  --color-muted: #5e6472;
  --color-background: #f6f7fb;
  --color-surface: #ffffff;
  --color-line: rgba(17, 17, 17, 0.1);
  --header-surface: rgba(255, 255, 255, 0.95);
  --header-blur: blur(24px);

  --max-width: 1120px;
  --header-height: 64px;
  --radius-large: 28px;
  --radius-medium: 18px;
  --shadow-soft: 0 18px 50px rgba(20, 30, 70, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: var(--header-surface);
  backdrop-filter: var(--header-blur);
  -webkit-backdrop-filter: var(--header-blur);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  height: var(--header-height);
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 34px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
}

.desktop-nav a {
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.76);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--color-text);
  border-color: var(--color-dark);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-height);
}

.has-submenu > a {
  display: inline-flex;
  align-items: center;
}

/* Kein Pfeil */
.has-submenu > a::after {
  content: none;
}

.submenu {
  position: absolute;
  top: 100%;
  left: -10px;
  width: 360px;
  min-width: 360px;
  padding: 10px 0;
  background: var(--header-surface);
  backdrop-filter: var(--header-blur);
  -webkit-backdrop-filter: var(--header-blur);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1001;
  transition: opacity 0.16s ease, visibility 0.16s ease;
}

.submenu a {
  display: block;
  padding: 10px 18px 10px 10px;
  border-bottom: 0;
  border-radius: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--color-text);
  white-space: normal;
}

.submenu a:hover,
.submenu a:focus {
  background: transparent;
  color: var(--color-dark);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.has-submenu:hover > a,
.has-submenu:focus-within > a {
  color: var(--color-text);
  border-color: var(--color-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 999px;
}

.icon-button:hover {
  background: rgba(83, 115, 242, 0.08);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  margin: 0;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -7px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, 5.5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 999;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  padding: 28px max(16px, calc((100vw - var(--max-width)) / 2)) 36px;
  overflow-y: auto;
  border-top: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(20, 30, 70, 0.12);
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.22, 0.85, 0.24, 1), opacity 0.18s ease;
}

.mobile-nav.is-open {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav > a,
.mobile-nav-group {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.18s ease 0.12s, transform 0.18s ease 0.12s;
}

.mobile-nav.is-open > a,
.mobile-nav.is-open .mobile-nav-group {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--color-text);
}

.mobile-nav-group {
  padding: 4px 0 10px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.mobile-submenu {
  display: grid;
  gap: 2px;
  padding: 4px 0 6px 18px;
}

.mobile-submenu a {
  padding: 7px 0;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(17, 17, 17, 0.72);
}

.mobile-submenu a:hover,
.mobile-submenu a:focus {
  color: var(--color-dark);
}

.search-panel {
  border-top: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.95);
}

.search-inner {
  width: min(100% - 32px, 720px);
  margin-inline: auto;
  padding: 22px 0 26px;
}

.search-inner label {
  display: block;
  font-weight: 650;
  margin-bottom: 8px;
}

.search-inner input {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 13px 18px;
  background: var(--color-background);
  outline: none;
}

.search-inner input:focus {
  border-color: var(--color-dark);
}

.search-inner p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* Main */

main {
  padding-top: var(--header-height);
}

.hero {
  background: var(--color-base);
  padding: 92px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.62);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(17, 17, 17, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-cover-placeholder {
  min-height: 360px;
  border: 1px dashed rgba(17, 17, 17, 0.24);
  border-radius: var(--radius-large);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.26);
  color: rgba(17, 17, 17, 0.58);
  text-align: center;
}

.hero-cover-placeholder span {
  font-weight: 650;
  color: rgba(17, 17, 17, 0.72);
}

.hero-cover-placeholder p {
  margin: 0;
  font-size: 0.94rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-text);
  color: #ffffff;
}

.button-secondary {
  border: 1px solid rgba(17, 17, 17, 0.22);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.44);
}

.hero-card {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-large);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.card-label {
  display: inline-flex;
  margin-bottom: 52px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.58);
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-card p {
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.68);
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--color-very-light);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.affiliate-box h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-heading p:not(.eyebrow) {
  color: var(--color-muted);
  margin-top: 16px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.affiliate-box {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
}

.benefit-card {
  padding: 24px;
  min-height: 160px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-medium);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 42px rgba(20, 30, 70, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.48));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 22px 48px rgba(20, 30, 70, 0.09);
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.benefit-card p {
  margin: 36px 0 0;
  color: var(--color-muted);
}

.subject-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.subject-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-weight: 400;
  font-size: 0.94rem;
  line-height: 1.25;
  color: var(--color-muted);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 14px 34px rgba(20, 30, 70, 0.07);
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.subject-grid a:hover {
  transform: translateY(-2px);
  color: var(--color-dark);
  border-color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 18px 40px rgba(20, 30, 70, 0.1);
}

.center-link {
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  font-weight: 700;
  color: var(--color-dark);
  border-bottom: 1px solid currentColor;
}

.link-plain {
  border-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.system-split {
  align-items: start;
}

.system-split h2 {
  transform: none;
}

.split p {
  margin-top: 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.affiliate-section {
  padding-top: 0;
}

.affiliate-box {
  padding: 36px;
}

.affiliate-box p {
  max-width: 760px;
  color: var(--color-muted);
}

.small-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

/* System page */

.system-hero {
  padding-bottom: 92px;
}

.system-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.system-hero-panel {
  display: grid;
  gap: 18px;
}

.system-mini-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-large);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 18px 44px rgba(20, 30, 70, 0.08);
}

.system-mini-step span {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-dark);
  color: #ffffff;
  font-weight: 750;
}

.system-mini-step strong {
  font-size: 1.28rem;
  line-height: 1.1;
}

.system-mini-step p {
  margin: 0;
  color: var(--color-muted);
}

.system-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.system-steps article,
.compare-card {
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.4));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 42px rgba(20, 30, 70, 0.06);
}

.system-steps article {
  min-height: 270px;
  padding: 28px;
}

.system-steps span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 52px;
  border-radius: 50%;
  background: var(--color-light);
  color: var(--color-dark);
  font-weight: 750;
}

.system-steps h3,
.compare-card h3 {
  margin: 0;
  line-height: 1.12;
}

.system-steps p {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.system-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.compare-card {
  padding: 34px;
}

.compare-blue {
  background: linear-gradient(150deg, rgba(230, 236, 255, 0.88), rgba(255, 255, 255, 0.56));
}

.compare-light {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(206, 217, 255, 0.32));
}

.compare-label {
  margin: 0 0 28px;
  color: var(--color-dark);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-card h3 {
  max-width: 420px;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  letter-spacing: -0.04em;
}

.compare-card ul {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
}

.compare-card li {
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.system-statement {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.system-statement h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.system-statement p {
  margin: 24px auto 0;
  max-width: 680px;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.system-statement .button {
  margin-top: 30px;
}

/* Footer */

.site-footer {
  background: var(--color-base);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}

.footer-grid > div:nth-child(n + 2) {
  padding-top: 22px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo img {
  width: auto;
  height: 75px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer p,
.site-footer a {
  color: rgba(17, 17, 17, 0.72);
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--color-text);
}

.site-footer .footer-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
}

.site-footer .footer-social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .footer-social-link:hover {
  border-color: rgba(17, 17, 17, 0.42);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-inner {
    justify-content: space-between;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid,
  .split,
  .system-hero-grid {
    grid-template-columns: 1fr;
  }

  .system-steps,
  .system-compare {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subject-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 60px;
  }

  .container,
  .header-inner,
  .search-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .hero {
    padding: 70px 0 58px;
  }

  .section {
    padding: 64px 0;
  }

  .system-mini-step {
    grid-template-columns: 1fr;
  }

  .system-mini-step span {
    grid-row: auto;
  }

  .system-steps article {
    min-height: 0;
  }

  .system-steps span {
    margin-bottom: 34px;
  }

  .compare-card {
    padding: 26px;
  }

  .benefit-grid,
  .subject-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .affiliate-box {
    padding: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Vorläufige Startseite: vorhandene Farben und Typografie. */
.coming-soon-header {
  background: var(--color-base);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.coming-soon-hero {
  min-height: clamp(480px, 66svh, 760px);
  display: grid;
  align-items: center;
  padding: clamp(76px, 10vw, 140px) 0;
  background: var(--color-very-light);
  text-align: center;
}

.coming-soon-hero .hero-content {
  max-width: 920px;
  margin-inline: auto;
}

.coming-soon-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 6.4vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.coming-soon-hero .hero-text {
  max-width: 670px;
  margin: 30px auto 0;
  text-wrap: pretty;
}

.coming-soon-hero .eyebrow {
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .coming-soon-hero .coming-soon-label {
    white-space: nowrap;
  }
}

/* Rechtliches bleibt auf Desktop in der rechten Footer-Spalte. */
@media (min-width: 981px) {
  .footer-grid > div:last-child {
    grid-column: 3;
  }
}

/* Gleiche Spalten wie im Footer: Copyright beginnt unter Rechtliches. */
@media (min-width: 981px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }

  .footer-bottom > p:first-child {
    grid-column: 1 / 3;
  }

  .footer-bottom > p:last-child {
    grid-column: 3;
    text-align: left;
  }
}

/* Schlichte Datenschutzseite im bestehenden Design. */
.privacy-hero {
  background: var(--color-very-light);
  padding: 64px 0;
}

.privacy-hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.privacy-content {
  max-width: 760px;
}

.privacy-content > section + section {
  margin-top: 40px;
}

.privacy-content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.privacy-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
}

.privacy-content p {
  margin: 0 0 18px;
}

.privacy-content .privacy-draft {
  padding: 20px;
  margin-bottom: 40px;
  background: var(--color-very-light);
  border-left: 3px solid var(--color-dark);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
}

.privacy-content > .small-note {
  margin-top: 40px;
  color: var(--color-muted);
}
