  :root {
    --background-blue: #0F52BA;       /* Saphirblau als Hintergrund */
    --primary-blue: #3B7DDD;          /* helleres Blau als Akzent */
    --secondary-blue: #2A64B7;        /* dunkleres Blau für Hover */
    --light-blue: #E3EEFF;            /* sehr helles Blau für Container/Hintergrund */
    --dark-blue: #1B2E5B;             /* dunkles Blau für Text */
    --dark-gray: #333333;
    --mid-gray: #555555;
    --font-base: 'Merriweather', serif;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-base);
    background-color: var(--background-blue);
    color: var(--dark-blue);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 20px;
  }

  .container {
    max-width: 800px;
    width: 100%;
    background-color: var(--light-blue);
    overflow: hidden;
  }

  header {
    background: linear-gradient(
      to bottom,
      var(--background-blue) 0%,
      var(--background-blue) 30%,
      var(--light-blue) 30%,
      var(--light-blue) 100%
    );
    text-align: center;
    padding: 40px 20px;
    color: var(--primary-blue);
  }

  .logo {
    width: 20vw;
    max-width: 250px;
    min-width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    background-color: #ffffff;
  }

  h1 {
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: 700;
  }

  h2 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: 8px;
    opacity: 0.9;
  }

  nav.language-switch {
    margin-top: 15px;
  }

  nav.language-switch img {
    margin: 0 5px;
    vertical-align: middle;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border 0.2s;
    width: auto;
  }

  nav.language-switch a img:hover {
    border-color: var(--primary-blue);
  }

  main {
    padding: 30px 50px;
    box-shadow:
      0 -3px 3px rgba(0, 0, 0, 0.05),
      0 -6px 6px rgba(0, 0, 0, 0.05),
      0 -9px 9px rgba(0, 0, 0, 0.04),
      0 -12px 12px rgba(0, 0, 0, 0.03);
    background: linear-gradient(
      to bottom,
      var(--light-blue) 0%,
      #fff 50%,
      #fff 100%
    );
    color: var(--dark-blue);
  }

  section {
    margin-bottom: 2rem;
  }

  section h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 400;
    display: block;
  }

  .rubrik {
    font-size: 1.8rem !important;
  }

  p {
    margin-bottom: 1rem;
    font-weight: 300;
  }

  a {
    color: var(--primary-blue);
    text-decoration: none;
  }
  main a, main a:visited, footer a  {
    color: var(--dark-blue);
    text-decoration-line: underline; 
	text-decoration-style: dotted; 
  }
  main a:hover, footer a:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
  }


  footer {
    box-shadow:
      inset 0 3px 3px rgba(0, 0, 0, 0.05),
      inset 0 6px 6px rgba(0, 0, 0, 0.05),
      inset 0 9px 9px rgba(0, 0, 0, 0.04),
      inset 0 12px 12px rgba(0, 0, 0, 0.03);
    background-color: var(--light-blue);
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--mid-gray);
  }

  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-top: 20px;
  }

  .social-icons img {
    height: 40px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
  }

  #nosocmed-text {
    display: none;
    margin: 10px auto 0;
    max-width: 600px;
    text-align: center;
    font-weight: 300;
  }

  main, footer {
    hyphens: auto;
    word-wrap: break-word;
  }
  #impressum, #datenschutz {
	  font-size: 75%;
	  max-width: 500px;
	   margin: 0 auto;
  }

  @media (max-width: 600px) {
    .logo {
      width: 30vw;
      max-width: 180px;
      min-width: 100px;
    }
    h1 {
      font-size: 2rem;
    }
    header {
      padding: 30px 10px;
    }
    main {
      padding: 20px 10px;
    }
    .social-icons {
      gap: 12px;
    }
    .social-icons img {
      height: 50px;
    }
  }
 @media (max-width: 400px) {
	.social-icons {
      gap: 2px;
    }
    .social-icons img {
      height: 40px;
    }
	.container {
    width: 100%;
    overflow: hidden;
	padding: 0;
	margin: 0 !IMPORTANT;
	}
 }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

footer span {
	hyphens: none;
	white-space: preserve nowrap;
}
