  /* Haupt Styles */
  :root {
    --orange: #e47d18;
    --blue: #1a3255;
    --light-blue: #b3bcc7;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--blue);
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  /* ------------------- Navigation ------------------- */
  .navbar {
    position: sticky;
    top: 35px;
    left: 40px;
    width: 90%;
    margin: 0 auto;
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(8, 28, 57, 0.49);
    border-radius: 10px;
    z-index: 1000;
  }

  .navbar img {
    margin-left: 2rem;
  }

  .nav-button {
    margin-right: 2rem;
  }




  /* ------------------- Header ------------------- */
  .header {
    position: relative;
    height: 97vh;
    width: 100%;
    background: url('../../images/ai-generated-8540922_1920_Verlauf.webp') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: -10rem;
    /* Korrigiert weißen Rand über dem Header */
  }

  .header-content {
    z-index: 0;
  }

  .header h1,
  .header h2,
  .header h3 {
    margin-bottom: 20px;
    font-family: 'KabelITCBQ-Book', sans-serif;
    z-index: 2;

  }

  .header h1 {
    color: white;
    font-size: 7.5rem;
    font-weight: lighter;
  }

  .header h2,
  .header h3 {
    font-size: 40px;
    color: #b3bcc7;
    font-weight: lighter;

  }

  .header h3 {
    font-size: 35px;
    margin-top: 30px;
    font-weight: bold;

  }

  .header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(2, 9, 18, 0.9) 0%, rgba(2, 9, 18, 0) 50%);
    z-index: 0;
  }

  .header::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 110px;
    /* Verlaufshöhe anpassen */
    background: linear-gradient(to top, rgb(240, 244, 248, 1), rgb(26, 50, 85, 0));
    z-index: 1;
  }



  /* Animierte Punkte im Header */
  .dots-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
  }

  .dots-container .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatSide 12s linear infinite;

  }

  @keyframes floatSide {
    0% {
      transform: translateX(0px) translateY(100%);
    }

    100% {
      transform: translateX(var(--x-offset)) translateY(-10%);
    }
  }

  /* ------------------- Karussell ------------------- */
  .carousel-section {
    padding: 4rem 2rem;
    background: rgb(240, 244, 248);
    text-align: center;
  }

  .carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* maximale Breite */
    margin: 0 auto;
    /* horizontal zentrieren */
    overflow: hidden;
    height: 60px;
    /* Höhe fixieren, damit nix springt */
  }

  .carousel-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 100%;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    font-size: 1.4rem;
    color: var(--blue);
  }

  .carousel-slide.active {
    left: 0;
    opacity: 1;
  }

  .carousel-slide.exit-left {
    left: -100%;
    opacity: 0;
  }

  .carousel-slide.enter-right {
    left: 100%;
    opacity: 0;
  }

  .carousel-slide.enter-right.active {
    left: 0;
    opacity: 1;
  }

  .count {
    display: inline-block;
    min-width: 3ch;
    /* Platz reservieren für Zahl */
    text-align: right;
    color: var(--orange);
    font-weight: bold;
  }

  .carousel-dots {
    margin-top: 1rem;
  }

  .carousel-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .carousel-dots .dot.active {
    background-color: var(--orange);
  }

  /* Flipkarten Container */
  .flip-card-section {
    padding: 4rem 2rem;
    background-color: #1a3255;
  }

  .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  /* Einzelne Karte */
  .flip-card {
    background-color: transparent;
    width: 250px;
    height: 250px;
    perspective: 1000px;
  }

  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }

  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transform: rotateX(0deg);
    /* Fix für Firefox */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    text-align: center;
    font-size: 18px;
  }

  .flip-card-front {
    z-index: 2;
  }

  .flip-card-back {
    transform: rotateY(180deg);
  }

  /* Bild in der Karte */
  .card-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: -10px;
  }

  .card-image4 {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: -10px;
  }

  /* Highlight-Text */
  .highlight {
    font-weight: bold;
    color: #0073e6;
  }

  .highlight {
    color: darkorange;
  }

  /* Zammad Button */
  .contact-button {
    position: fixed;
    max-height: 50px;
    top: 85%;
    left: 6%;
    background-color: rgba(11, 32, 63, 0.8);
    backdrop-filter: blur(2px);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 7px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
  }

  .zammad-contact-text {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    /* Vertikale Ausrichtung */
    gap: 10px;
  }

  .zammad-contact-text p {
    margin: 0;
    justify-self: end;
    font-family: 'Inter', sans-serif;
    font-weight: b;
    font-size: 30px;
    margin-top: -10px;
  }

  #zammad-feedback-form {
    justify-self: start;
    margin-top: -75px;
    background-color: #e47d18;
    color: rgb(255, 255, 255);
    padding: 10px 15px;
    border: none;
    border-radius: 12px;
    font-family: 'KabelITCBQ-Book', sans-serif;
    font-weight: bold;
    font-size: 22px;
    cursor: pointer;
  }

  .Ueber-uns {
    padding-top: 8%;
    overflow: auto;
  }

  .img-overflow {
    width: 65%;
    /* Breite */
    height: auto;
    margin-left: -10%;
    /* Abstand zwischen Element und Umfeld */
    border-radius: 20px;
    /* abgerundete Ecken */

  }

  /* Text-Box (reduzierte Deckkraft) */
  .orange-box {
    background: rgba(9, 32, 65, 0.81);
    /* Farbe */
    border-radius: 15px;
    /* abgerundete Ecken */
    backdrop-filter: blur(15px);
    /* optional für Glas-Effekt */
    padding: 6vh 5vw;
    color: white;
    /* Farbe */
    position: relative;
    max-width: 40%;
    /* maximale Breite */
    /* Abstand zwischen Element und Umfeld */
    left: 40%;
    /* Abstand zwischen Element und Umfeld */

    margin-top: -20%;
    margin-bottom: 1%;
  }

  .orange-box h2 {
    font-family: 'KabelITCBQ-Book', sans-serif;
    font-weight: lighter;
    font-size: 40px;
  }

  .orange-box p {
    font-family: 'Inter', sans-serif;
    font-weight: lighter;
    font-size: 18px;
  }

  @keyframes moveRight {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(110vw);
    }
  }

  @keyframes moveLeft {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-104vw);
    }
  }