/* Grundlayout */
.imprint {
    padding: 120px 100px 80px; /* Platz unter dem festen Header */
  }
  
  .imprint-hero {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .imprint-hero h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 32px;
    margin: 0 0 6px 0;
  }
  
  .imprint-hero .tagline {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
  }
  
  /* Card mit legalem Text */
  .legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 36px;
    line-height: 1.75;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  }
  
  .legal-card h3 {
    font-size: 16px;
    margin: 28px 0 8px;
    letter-spacing: 0.2px;
  }
  
  .legal-card p, .legal-card li {
    font-size: 14px;
    color: #111;
  }
  
  .legal-card a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  
  /* CTA unten (gleich wie About) */
  .contact-cta {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
  }
  
  .contact-btn {
    font-family: 'Unbounded', sans-serif;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: lowercase;
  }
  
  .contact-btn:hover {
    background-color: black;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .imprint { padding: 110px 24px 60px; }
    .legal-card { padding: 24px; border-radius: 12px; }
  }
  
  @media (max-width: 600px) {
    .imprint-hero h2 { font-size: 26px; }
    .legal-card h3 { font-size: 15px; }
    .legal-card p { font-size: 13.5px; }
  }
  