/* From: impressum.html */
.legal-page {
      padding: clamp(3rem, 6vw, 5rem) 0;
      background: var(--white);
    }
    .legal-content {
      max-width: 740px;
      margin: 0 auto;
    }
    .legal-content h1 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.15;
      color: var(--stone-900);
      margin-bottom: 2rem;
    }
    .legal-content h2 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--stone-900);
      margin-top: 2.5rem;
      margin-bottom: 0.75rem;
      line-height: 1.25;
    }
    .legal-content h3 {
      font-family: var(--font-sans);
      font-size: 1.0625rem;
      font-weight: 600;
      color: var(--stone-800);
      margin-top: 1.75rem;
      margin-bottom: 0.5rem;
    }
    .legal-content p {
      font-size: 1rem;
      color: var(--stone-600);
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .legal-content a {
      color: var(--red);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .legal-content a:hover {
      color: var(--red-dark);
    }
    .legal-content .legal-address {
      background: var(--stone-50);
      border: 1px solid var(--stone-200);
      border-radius: 10px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .legal-content .legal-address p {
      margin-bottom: 0.25rem;
    }
    .legal-content .legal-address strong {
      color: var(--stone-800);
    }
    .legal-divider {
      border: none;
      border-top: 1px solid var(--stone-200);
      margin: 2rem 0;
    }

/* From: datenschutz.html */
.legal-page {
      padding: clamp(3rem, 6vw, 5rem) 0;
      background: var(--white);
    }
    .legal-content {
      max-width: 740px;
      margin: 0 auto;
    }
    .legal-content h1 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.15;
      color: var(--stone-900);
      margin-bottom: 2rem;
    }
    .legal-content h2 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--stone-900);
      margin-top: 2.5rem;
      margin-bottom: 0.75rem;
      line-height: 1.25;
    }
    .legal-content h3 {
      font-family: var(--font-sans);
      font-size: 1.0625rem;
      font-weight: 600;
      color: var(--stone-800);
      margin-top: 1.75rem;
      margin-bottom: 0.5rem;
    }
    .legal-content p {
      font-size: 1rem;
      color: var(--stone-600);
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .legal-content a {
      color: var(--red);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .legal-content a:hover {
      color: var(--red-dark);
    }
    .legal-divider {
      border: none;
      border-top: 1px solid var(--stone-200);
      margin: 2rem 0;
    }

/* From: agb.html */
.legal-page {
      padding: clamp(3rem, 6vw, 5rem) 0;
      background: var(--white);
    }
    .legal-content {
      max-width: 740px;
      margin: 0 auto;
    }
    .legal-content h1 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.15;
      color: var(--stone-900);
      margin-bottom: 2rem;
    }
    .legal-content p {
      font-size: 1rem;
      color: var(--stone-600);
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }
    .legal-content a {
      color: var(--red);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .legal-content a:hover {
      color: var(--red-dark);
    }
    .agb-download {
      background: var(--stone-50);
      border: 1px solid var(--stone-200);
      border-radius: 12px;
      padding: clamp(2rem, 4vw, 3rem);
      text-align: center;
    }
    .agb-download .download-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--stone-100);
      border: 1px solid var(--stone-200);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      color: var(--red);
    }
    .agb-download .download-icon svg {
      width: 28px;
      height: 28px;
    }
    .agb-download h2 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--stone-900);
      margin-bottom: 0.5rem;
    }
    .agb-download p {
      font-size: 1rem;
      color: var(--stone-500);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }