    :root {
      --primary-blue: #0f2c44;
      --accent-green: #12303b;
      --accent-gold: #caa850;
      --background-light: #f6f2ea;
    }

    body {
      background-color: var(--background-light);
      font-family: Arial, sans-serif;
      color: var(--primary-blue);
      margin: 0;
    }

    .header-bar {
      background: linear-gradient(
        to bottom,
        var(--primary-blue) 0px,
        var(--primary-blue) 80px,
        var(--accent-gold) 80px,
        var(--accent-gold) 85px,
        var(--accent-green) 85px,
        var(--accent-green) 125px,
        transparent 125px,
        transparent 165px
      );
      height: 165px;
      padding: 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      position: relative;
      padding-right: 1rem;
    }

    .logo {
      height: 160px;
      position: absolute;
      top: 5px;
      left: 1rem;
      z-index: 1;
    }

    .site-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: white;
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .site-subtitle {
      position: absolute;
      top: 85px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Georgia', 'Times New Roman', serif;
      font-size: 1rem;
      color: var(--accent-gold);
      letter-spacing: 0.05em;
      z-index: 2;
      pointer-events: none;
    }

    .social-icons-header {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      position: absolute;
      right: 1rem;
      top: 25px;
      z-index: 2;
    }

    .social-icons-header a {
      color: white;
      font-size: 1.25rem;
      text-decoration: none;
    }

    .social-icons-header a:hover {
      color: var(--accent-gold);
    }

    @media (max-width: 768px) {
      .social-icons-header {
        display: none;
      }
    }

    .slider-container {
      display: flex;
      flex-wrap: wrap;
      gap: 0.25rem;
      justify-content: center;
      padding: 0.25rem;
      max-width: 100%;
      height: auto;
    }

    .slider {
      flex: 1 1 300px;
      max-width: 33%;
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background: #ccc;
      height: auto;
    }

    .slider img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      display: block;
    }

    .welcome-box {
      background: white;
      padding: 2rem;
      margin: 2rem auto 1rem auto;
      max-width: 800px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: relative;
      z-index: 10;
    }

    .footer {
      background-color: var(--primary-blue);
      color: white;
      padding: 1rem;
      margin-top: 2rem;
    }

    .social-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
    }
    
    blockquote {
      color: var(--accent-gold); /* Goldton für den Text */
      border-left: 6px solid var(--accent-gold); /* Goldener Strich am Rand */
      background: #fffbe9; /* Optional: sanfter Hintergrund */
      margin: 2em 0;
      padding: 1em 1.5em;
      font-family: 'Georgia', 'Times New Roman', serif;
      font-size: 1.2em;
    }


    .social-icons a {
      color: var(--primary-blue);
      font-size: 1.5rem;
      text-decoration: none;
    }

    .social-icons a:hover {
      color: var(--accent-gold);
    }

    @media (min-width: 768px) {
      .slider-container {
        flex-wrap: nowrap;
      }
    }

    @media (max-width: 768px) {
      .slider#mobile-only {
        display: none;
      }
      .slider {
        max-width: 100%;
      }
    }

    @supports not (aspect-ratio: 16 / 9) {
      .slider {
        height: calc((100vw / 3) * 9 / 16);
      }
    }
    
    @media (max-width: 768px) {
      .site-title {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .site-subtitle {
        font-size: 0.8rem;
        height: 32px;
        top: 85px;
      }
    }

    .social-burger-menu {
      display: none;
      position: absolute;
      right: 1rem;
      top: 25px;
      z-index: 3;
    }
    
    .burger-btn {
      background: var(--accent-green);
      color: var(--accent-gold);
      border: none;
      border-radius: 4px;
      padding: 0.5em 1em;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5em;
    }
    
    .burger-label {
      font-family: 'Georgia', 'Times New Roman', serif;
      font-size: 1rem;
    }
    
    .burger-dropdown {
      display: none;
      position: absolute;
      right: 0;
      top: 2.5em;
      background: white;
      border: 1px solid var(--accent-gold);
      border-radius: 6px;
      padding: 0.5em 1em;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      min-width: 180px;
    }
    
    .burger-dropdown a {
      display: inline-block;
      color: var(--primary-blue);
      font-size: 1.2rem;
      margin: 0.3em 0.4em;
    }
    
    .burger-dropdown a:hover {
      color: var(--accent-gold);
    }
    
    /* Sichtbarkeit regeln */
    @media (max-width: 1150px) {
      .social-icons-header {
        display: none !important;
      }
      .social-burger-menu {
        display: block;
      }
    }
    @media (min-width: 1151px) {
      .social-burger-menu {
        display: none;
      }
    }
    
    .text-image-row {
      display: flex;
      gap: 2rem;
      justify-content: flex-start;
      align-items: flex-start; /* Wichtig: oben bündig */
      max-width: 1600px;
      margin: 2rem auto;
    }

/* Leere Spalte links vom Textblock, gleich groß wie der Slider */
    .slider-spacer {
      flex: 1 1 0;
      max-width: 320px;
      min-width: 200px;
      width: 100%;
      /* Unsichtbar, nimmt aber Platz ein */
      background: transparent;
      height: 100%;
    }
    
    .welcome-box {
      flex: 2 1 0;
      min-width: 0;
      padding: 2rem;
      margin: 0; 
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: relative;
      z-index: 10;
    }
    
    .custom-slider {
      flex: 1 1 0;
      max-width: 320px;
      min-width: 200px;
      width: 100%;
      background: #eee;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      position: relative;
      overflow: hidden;
      margin-top: 0;
      /* fallback für ältere Browser */
      height: auto;
    }

    .custom-slider img {
      width: 100%;
      height: auto;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      border-radius: 6px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
      background: #ccc;
    }

    .slider-images {
      width: 100%;
      position: relative;
      aspect-ratio: 2 / 3;
      /* Fallback für ältere Browser */
      height: 0;
      padding-bottom: 150%; /* 3/2 = 1.5 -> 150% */
    }
    
    .slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.5s;
      border-radius: 6px;
      background: #ccc;
      z-index: 0;
    }
    
    .custom-slider .slide.active {
      opacity: 1;
      z-index: 1;
    }


    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--accent-gold);
      color: white;
      border: none;
      border-radius: 50%;
      width: 2.2rem;
      height: 2.2rem;
      font-size: 1.3rem;
      cursor: pointer;
      z-index: 2;
      opacity: 0.85;
      transition: background 0.2s;
    }
    .slider-btn:hover {
      background: var(--primary-blue);
    }
    
    .slider-btn.prev {
      left: 0.5rem;
    }
    .slider-btn.next {
      right: 0.5rem;
    }
    
    /* --- Responsive Verhalten --- */
    
    /* Tablet Landscape: Spacer verschwindet, Slider bleibt rechts */
    @media (max-width: 1150px) {
      .slider-spacer {
        display: none;
      }
      .text-image-row {
        justify-content: flex-start;
      }
    }
    
    /* Tablet Portrait: Slider unter dem Text, Spacer bleibt weg */
    @media (max-width: 1024px) {
      .text-image-row {
        flex-direction: column;
        align-items: center;
      }
      .custom-slider {
        margin-top: 2rem;
        max-width: 360px;
        width: 90vw;
      }
    }
    
    /* Smartphone: Slider komplett ausblenden */
    @media (max-width: 600px) {
      .custom-slider {
        display: none;
      }
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      position: absolute;
      bottom: 1rem;
      left: 0;
      width: 100%;
      z-index: 3;
    }
    
    .dot {
      width: 13px;
      height: 13px;
      background: #fffbe9;
      border: 2px solid var(--accent-gold);
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    
    .dot.active {
      background: var(--accent-gold);
      border-color: var(--primary-blue);
    }

    .footer {
      background-color: var(--primary-blue);
      color: white;
      padding: 2rem 1rem 1.5rem 1rem;
      margin-top: 2rem;
      font-size: 1rem;
    }

    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      max-width: 1600px;
      margin: 0 auto;
    }

    .footer-block {
      flex: 1 1 0;
      min-width: 180px;
      max-width: 260px;
      padding: 0 0.5rem;
      box-sizing: border-box;
      text-align: center;
    }

    .footer-block.left {
      text-align: left;
    }

    .footer-block.right {
      text-align: right;
    }

    .footer-block h4 {
      margin-top: 0;
      margin-bottom: 0.5em;
      color: var(--accent-gold);
      font-size: 1.1em;
      letter-spacing: 0.05em;
    }

    .footer-block p {
      margin: 0;
      line-height: 1.5;
      font-size: 0.98em;
    }

    /* Responsive: ab Tablet Portrait untereinander */
    @media (max-width: 1024px) {
      .footer-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
      }
      .footer-block {
        max-width: 100%;
        text-align: center !important;
        padding: 0.5rem 0;
      }
      .footer-block.left,
      .footer-block.right {
        text-align: center !important;
      }
    }

    #matomo-consent-overlay {
      position: fixed;
      z-index: 9999;
      inset: 0;
      background: rgba(15,44,68,0.85);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .matomo-consent-popup {
      background: #fffbe9;
      color: #0f2c44;
      border: 2px solid #caa850;
      border-radius: 10px;
      padding: 2rem 1.5rem 1.5rem 1.5rem;
      max-width: 400px;
      box-shadow: 0 6px 32px rgba(0,0,0,0.25);
      text-align: center;
      position: relative;
    }
    
    .matomo-consent-popup h2 {
      margin-top: 0;
      color: #caa850;
    }
    
    .matomo-consent-actions {
      margin-top: 1.5rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
    }
    
    .matomo-consent-actions button {
      background: #caa850;
      color: #0f2c44;
      border: none;
      border-radius: 5px;
      padding: 0.7em 1.2em;
      font-size: 1em;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.2s;
    }
    
    .matomo-consent-actions button:hover {
      background: #e6c87a;
    }

    .matomo-consent-close {
      position: absolute;
      right: 1rem;
      top: 1rem;
      background: transparent;
      border: none;
      font-size: 1.5em;
      color: #caa850;
      cursor: pointer;
    }
    
    .footer-gold-bar {
      width: 100vw;
      height: 5px;
      background: var(--accent-gold);
      margin: 0;
      border-radius: 0;
      position: relative;
      left: 50%;
      right: 50%;
      transform: translateX(-50%);
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    
