body {
      font-family: arial, sans-serif;
      background: #fff;
      margin: 0;
      padding: 90px 20px 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .fixed-bar {
      position: fixed;
      left: 0;
      right: 0;
      height: 50px;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 1000;
    }
	
    .fixed-top {
	  background: #fff;
      top: 0;
    }
	
    .fixed-bottom {
      bottom: 0;
      border-top: 1px solid #ddd;
	  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }
	
    .bar-links {
      display: flex;
      gap: 15px;
    }
	
    .bar-links a {
      text-decoration: none;
      color: #404040;
      font-size: 0.9rem;
    }
	
    .bar-links a:hover {
      text-decoration: underline;
    }

    h1 {
      font-size: 1.8rem;
      margin-bottom: 40px;
	  margin-top: 0px;
      font-weight: normal;
      color: #202124;
      text-align: center;
      text-transform: uppercase;
    }
	
    h1 small {
      font-size: 1.0rem;
    }
	
    /* Impressum / Rechtstexte */
    #impressum {
      max-width: 900px;
      margin: 20px auto;
      padding: 20px;
      background: #fff;
      color: #333;
      line-height: 1.6;
      font-size: 1rem;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    #impressum h2 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: #222;
    }

    #impressum h3 {
      font-size: 1.2rem;
      margin-top: 2rem;
      margin-bottom: .8rem;
      color: #444;
    }

    #impressum p {
      margin-bottom: 1rem;
      text-align: justify;
    }

    #impressum a {
      color: #0066cc;
      text-decoration: none;
    }

    #impressum a:hover {
      text-decoration: underline;
    }

    /* Responsive für mobile Ansicht */
    @media (max-width: 600px) {
      #impressum {
        padding: 15px;
        font-size: 0.95rem;
      }

      #impressum h2 {
        font-size: 1.2rem;
      }

      #impressum h3 {
        font-size: 1.05rem;
      }
	  
	  .text {
       display: none;
      }
    }
	
    .text {
      font-size: 0.875rem;
      word-wrap: break-word;
      white-space: pre-wrap;
      margin-bottom: 0px;
    }
	
	.menu {
    position: fixed; 
    top: 0; left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .75rem;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    padding: .4rem;
    display: none;
    z-index: 9999;
	font-size: 0.95rem;
    max-width: min(92vw, 320px);
    max-height: min(60vh, 420px);
    overflow: auto;
  }
  .menu.open { display:block; }

  .item {
    display:block;
    padding:.6rem .7rem;
    border-radius:.6rem;
    text-decoration:none;
    color:var(--fg);
  }
  .item:hover, .item:focus {
    background:#f1f5f9;
    outline:none;
  }
  
  hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,.3);
    border-bottom: 1px solid rgba(0,0,0,.08);
    margin: 0.5em 0;
    position: relative;
  }
  
  hr:before,hr:after {
    content: '';
    position: absolute;
    bottom:0px;
    height: 5em;
    width: 100%;
    background: radial-gradient(ellipse at bottom, rgba(255,255,255,0.35) 0%,rgba(255,255,255,0) 70%);
    z-index:0;
  }
  
  hr:after {
    top:0px;
    bottom:auto;
    height: 1.5em;
    background: radial-gradient(ellipse at top, rgba(0,0,0,0.06) 0%,rgba(0,0,0,0) 70%);
  }