    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
      line-height: 1.6;
    }
    
    /* Footer */
    footer {
      padding: 50px 0 20px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-grid {
      display: grid;
      gap: 28px;
      grid-template-columns: 1fr;
      text-align: center;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: var(--text);
    }

    .footer-brand img {
      width: 140px;
      height: auto;
    }

    .footer-contact {
      margin-top: 8px;
    }

    .footer-contact a {
      display: block;
      color: var(--text);
      text-decoration: none;
      margin-top: 2px;
    }

    .footer-contact a:hover {
      color: var(--accent-strong);
    }

    .footer-links, .footer-social {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: center;
    }

    .footer-links h3, .footer-social h3 {
      font-size: 15px;
      margin-bottom: 6px;
      color: var(--text);
    }

    .footer-links a, .footer-social a {
      color: var(--muted);
      text-decoration: none;
      font-weight: 600;
    }

    .footer-links a:hover, .footer-social a:hover {
      color: var(--text);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 13px;
      color: #999;
      border-top: 1px solid rgba(0,0,0,.08);
      padding-top: 14px;
    }

    /* Responsive Layout ab Tablet */
    @media (min-width: 700px) {
      .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
      }

      .footer-brand {
        align-items: center;  /* Logo + Adresse bleiben zentriert */
        text-align: center;
      }

      .footer-links, .footer-social {
        align-items: flex-start;
      }
    }