
  
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  @font-face {
    font-family: 'Delirium';
    src: url('/fonts/Delirium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'Metropolis';
    src: url('/fonts/Metropolis-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }  

  @font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'EditorsNote';
    src: url('/fonts/EditorsNote-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'EditorsNote';
    src: url('/fonts/EditorsNote-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'EditorsNote';
    src: url('/fonts/EditorsNote-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'GothamBook';
    src: url('/fonts/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }

  /* Import Aileron Regular */
@font-face {
  font-family: 'Aileron';
  src: url('./fonts/Aileron-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* Import Aileron Bold */
@font-face {
  font-family: 'Aileron';
  src: url('./fonts/Aileron-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Oswald';
  src: url('./fonts/Oswald-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SpaceAge';
  src: url('fonts/space-age.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MetropolisThin';
  src: url('fonts/Metropolis-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
  
  @media only screen and (max-width: 600px) {
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      
    }
  
    body {
      background-color: #111;
      color: #fff;
      max-width: 100vw;
      overflow-x: hidden;
    }

    .container-screen {
        width: 100vw;
        height: 100vh;
    }
  
    /* Navbar: Flexbox Container */
    .navbar {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 1rem 2rem;
      background-color: rgba(0, 0, 0, 0.305); /* halbtransparent für den Blur-Effekt */
      backdrop-filter: blur(20px);             /* Unschärfe */
      -webkit-backdrop-filter: blur(20px);     /* Safari Support */
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: opacity 0.4s ease;
    }
    
    #img1, #img2, #img3 {
      width: 100vw;
      height: 100vh;
      object-fit: cover;
    }
  
    /* Transparente Navbar (wenn Menü offen) */
    .navbar--transparent {
      padding: 1.3rem 2rem;
      background-color: transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      border-bottom: none !important;
      box-shadow: none !important;
    }
  
    /* Logo-Größe */
    .logo img {
      height: 40px;
      width: auto;
    }
  
    /* Menü-Container: Rechts anordnen */
    .menu-toggle {
      display: flex;
      align-items: center;
      cursor: pointer;
      margin-left: auto; /* Schiebt das Menü ganz nach rechts */
      width: auto;
    }
  
    /* Burger Icon */
    .burger {
      display: flex;
      flex-direction: column;     /* Drei Linien übereinander */
      justify-content: space-between;
      width: 28px;
      height: 20px;
      cursor: pointer;            /* Hand-Cursor bei Hover */
    }
  
    .burger span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: white;
      border-radius: 3px;
      transition: 0.3s ease;
    }
  
    /* Close Icon */
    .close-icon {  
      font-size: 30px;
      color: white;
      cursor: pointer;
      display: none;
      margin-left: auto;       /* Rechtsbündig */
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* Menü Overlay */
    .menu-overlay {
      position: fixed;
      inset: 0;
      background-color: #121212;
      background-color: rgba(0, 0, 0, 0.305); /* halbtransparent für den Blur-Effekt */
      backdrop-filter: blur(50px);             /* Unschärfe */
      -webkit-backdrop-filter: blur(50px); 
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      z-index: 10;
    }
  
    .menu-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
  
    /* Menü Links */
    .menu-items {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      list-style: none;
      text-align: center;
    }
  
    .menu-items a {
      text-decoration: none;
      font-size: 2rem;
      color: white;
      letter-spacing: 1px;
      transition: color 0.3s;
    }
  
    .menu-items a:hover {
      color: rgb(0, 115, 255);
    }
  
    .footer { 
      padding: 2rem 2rem;
      background-color: #121212;
    }
  
    #brandname {
      text-transform: uppercase;
    }
  
    #footer-logo img {
      width: 40px;
      height: auto;
    }
  
    .container {
      display: flex;
      justify-content: space-between;
      gap: 2rem; /* optional spacing between columns */
    }
    
    .left,
    .right {
      flex: 1; /* make both columns equal width */
      line-height: 1.9;
    }
  
    .right a {
      color: #aaaaaa;
    }
  
    .address {
      padding-bottom: 50px;
    }
  
    .socials {
      display: flex;
      justify-content: center;
      gap: 20px; /* controls space between icons */
    }
  
    .socials a {
      color: white; /* Standardfarbe */
      margin: 0 10px; /* Abstand zwischen den Icons */
    }
    
    .socials i {
      font-size: 1.5rem;
    }
  
    .copyright {
      text-align: center;
      padding-top: 50px;
    }
    
    .contact p {
      -webkit-touch-callout: none; /* iOS */
      -webkit-user-select: text;
      user-select: text;
    }
  
    #footer-logo img {
      width: 40px;
      height: auto;
    }
  
    #brandname {
      margin: 0;
      font-size: 1.4rem;
      text-transform: uppercase;
    }
  
    .header-row h2 {
      margin: 0;
      font-weight: 400;
      font-size: 1rem;
      color: #aaa;
    }
  
    .title {
      margin-left: 25px;
    }
  
    .header-row{
      padding-top: 0px;
    }
  
    .left p{
      color: #aaa;
    }
  
    .right p{
      color: #aaa;
    }
  
    .scroll-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      color: #fff;
      background-color: rgb(0, 115, 255);
      border: none;
      padding: 12px 16px;
      border-radius: 50%;
      font-size: 24px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    
    .scroll-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
  
  .center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  #center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 60vw;
  }
  
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  @media only screen and (max-width: 600px) {
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      
    }

    p {
      color: #aaa;
    }

    /* NEU: Footer Header mit Logo, Brandname und h2 in einer Reihe */
  .header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;      /* Abstand zwischen den Elementen */
    margin-bottom: 20px;
    flex-wrap: wrap;   /* Bei kleinen Bildschirmen umbrechen */
  }
  
    body {
      font-family: system-ui, sans-serif;
      background-color: #111;
      color: #fff;
      max-width: 100vw;
      overflow-x: hidden;
    }
  
    /* Navbar: Flexbox Container */
    .navbar {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 1rem 2rem;
      background-color: rgba(0, 0, 0, 0.305); /* halbtransparent für den Blur-Effekt */
      backdrop-filter: blur(20px);             /* Unschärfe */
      -webkit-backdrop-filter: blur(20px);     /* Safari Support */
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: opacity 0.4s ease;
    }
    
    #img1, #img2, #img3 {
      width: 100vw;
      height: 100vh;
      object-fit: cover;
    }
  
    /* Transparente Navbar (wenn Menü offen) */
    .navbar--transparent {
      padding: 1.3rem 2rem;
      background-color: transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      border-bottom: none !important;
      box-shadow: none !important;
    }
  
    /* Logo-Größe */
    .logo img {
      height: 40px;
      width: auto;
    }
  
    /* Menü-Container: Rechts anordnen */
    .menu-toggle {
      display: flex;
      align-items: center;
      cursor: pointer;
      margin-left: auto; /* Schiebt das Menü ganz nach rechts */
      width: auto;
    }
  
    /* Burger Icon */
    .burger {
      display: flex;
      flex-direction: column;     /* Drei Linien übereinander */
      justify-content: space-between;
      width: 28px;
      height: 20px;
      cursor: pointer;            /* Hand-Cursor bei Hover */
    }
  
    .burger span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: white;
      border-radius: 3px;
      transition: 0.3s ease;
    }
  
    .footer { 
      padding: 2rem 2rem;
      background-color: #121212;
    }
  
    #footer-logo img {
      width: 40px;
      height: auto;
    }
  
    .container {
      display: flex;
      justify-content: space-between;
      gap: 2rem; /* optional spacing between columns */
    }
    
    .left,
    .right {
      flex: 1; /* make both columns equal width */
      line-height: 1.9;
    }
  
    .right a {
      color: #aaaaaa;
    }
  
    h2 {
      color: #facc15;
    }
  
    .address {
      padding-bottom: 50px;
    }
  
    .socials {
      display: flex;
      justify-content: center;
      gap: 20px; /* controls space between icons */
    }
  
    .socials a {
      color: white; /* Standardfarbe */
      margin: 0 10px; /* Abstand zwischen den Icons */
    }
    
    .socials i {
      font-size: 1.5rem;
    }
  
    .copyright {
      text-align: center;
      padding-top: 50px;
    }
    
    .contact p {
      -webkit-touch-callout: none; /* iOS */
      -webkit-user-select: text;
      user-select: text;
    }
  
    #footer-logo img {
      width: 40px;
      height: auto;
    }
  
    .scroll-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      color: #fff;
      background-color: rgb(0, 115, 255);
      border: none;
      padding: 12px 16px;
      border-radius: 50%;
      font-size: 24px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    
    .scroll-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .first-screen,
    .second-screen,
    .third-screen {
    height: auto;
    width: 100vw;
    position: relative;
  }
  
  .second-screen {
    background-color: #fff;
  }
  
  .third-screen {
    position: relative;
    background-color: #121212; /* dark background */
    width: 100vw;
    height: 100vh;
  }
  
  .center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  #center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 60vw;
  }

  .section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: auto;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-block: 1rem;
    border-radius: 5px;
    padding: 30px;
    padding-top: 80px;
    padding-bottom: 30px;
  
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* IE / alter Edge */
  }

  #section {
    position: relative;
    display: flex;
    gap: 15px;
    width: 100vw; /* Bildschirmbreite */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 1rem;
    padding: 0;
  
    margin-left: -30px;  /* gleicht das Eltern-Padding aus */
    margin-right: -30px;
  
    border-radius: 0;    /* optional, da kein Rand mehr nötig */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #section > *:first-child {
    padding-left: 30px;
  }
  
  #section > *:last-child {
    padding-right: 30px;
  }
  
  .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  
  .section::-webkit-scrollbar {
    display: none;                    /* Chrome, Safari, Opera */
  }
  
  .section__item {
    flex: 0 0 auto;                  /* Kein automatisches Wachstum */
    width: 100%;                    /* Optional: passt sich dem Container an */
    height: 400px;                  /* Feste Höhe */
    scroll-snap-align: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
    position: relative;
    padding: 0;
  }

  .section__item_2 {
    flex: 0 0 auto;                  
    width: calc(100vw - 60px);      /* 100vw minus 60px */
    height: 400px;                  
    scroll-snap-align: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
    position: relative;
    padding: 0;
  }
  

  .section__item_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .section__item_website {
    flex: 0 0 auto;                  /* Kein automatisches Wachstum */
    width: 100%;                    /* Optional: passt sich dem Container an */
    height: auto;                  /* Feste Höhe */
    scroll-snap-align: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
    position: relative;
    padding: 0;
  }

  .section__item_website img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .project-date {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    color: #111827;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }
  
  .project-date i {
    font-size: 16px;
  }
  
  .section__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  /* Safari-Fix: Sicherstellen, dass Snap funktioniert */
  @supports (scroll-snap-align: center) {
    .section__item {
      min-width: auto;
    }
  }
  
  .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  
    padding-bottom: 2rem;
    padding-top: 4rem;
    background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 30%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0) 100%);
    color: white;
  
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.3rem;
  }
  
  
  
  .project-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
  }
  
  .project-type {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.85;
    text-align: center;
  }

  .project-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    color: #111827;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }  
  
  .project-tag i {
    font-size: 16px;
  }

  .sub-container-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .sub-container-full-row {
    background-color: #d4d4d4; /* Beispiel-Farbe */
    padding: 15px;
    width: 100%;
    border-radius: 8px;
  }

  .label {
    font-size: 14px;
    color: #6b7280; /* grau */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .content {
    font-size: 18px;
    color: #111827; /* fast schwarz */
    font-weight: 500;
  }
  
  .sub-container-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  
  .sub-container-left,
  .sub-container-right {
    background-color: #d4d4d4;
    flex: 1;
    padding: 15px;
    text-align: left;
    border-radius: 8px;
  }
  
  .navigation {
    color: #6b7280;
    padding-top: 30px;
    font-size: 14px;
    font-family: sans-serif;
  }
  
  .navigation a {
    color: #6b7280;
    text-decoration: none;
  }

  .tools-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 10px;
  }
  
  .tool {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #111827;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }
  
  .tool img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  #jimdo {
    width: auto;
  }

  #headline{
    color: rgb(0, 115, 255);
    text-transform: uppercase;
    text-align: center;
  }

  .custom-divider {
    border: none;
    height: 1px;
    background-color: #e5e7eb; /* helles Grau */
    margin: 40px 0; /* Abstand oben und unten */
  }
  
  .category {
    position: absolute;
    display: flex;
    top: 15px;
    gap: 8px;
    left: 15px;
    font-size: 16px;
    color: #111827;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }

  .category img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .link {
    position: absolute;
    display: flex;
    bottom: 15px;
    gap: 8px;
    right: 15px;
    font-size: 16px;
    color: #111827;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }

  .link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .type {
    position: absolute;
    display: flex;
    bottom: 15px;
    gap: 8px;
    left: 15px;
    font-size: 16px;
    color: #111827;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }

  .type img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  #accent-color {
    background-color: #FFD300;
  }

  #accent-color-2 {
    background-color: #E42020;
  }

  #primary-color {
    background-color: #181715;
  }

  #secondary-color {
    background-color: transparent;
    border: solid 1px #121212;
  }

  #secondary-color-2 {
    background-color: #444444;
  }

  #night-color {
    background-color: #121212;
  }

  #dim-gray-color {
    background-color: #6E675C;
  }

  #bone-color {
    background-color: #EDE3D6;
  }

  #pakistan-green {
    background-color: #283618;
  }

  #cornsilk {
    background-color: #FEFAE0;
  }

  #black-text {
    color: #121212;
  }

  #vista-blue {
    background-color: #939FFC;
  }

  #neon-blue {
    background-color: #576AFA;
  }

  #silver {
    background-color: #a7a7a7;
  }
  
  #light-red {
    background-color: #FF7E87;
  }

  #palatinate-blue {
    background-color: #1130F7;
  }

  #screamin-green {
    background-color: #80FF80;
  }

  #snow {
    background-color: #f6f2f2;
  }

  #gray {
    background-color: #808080;
  }

  #white {
    color: #ffffff;
  }

  #lion {
    background-color: #caa46b;
  }

  #raisin-black {
    background-color: #282828;
  }

  #seasalt {
    background-color: #f8f8f8;
  }

  #teritary-color {
    background-color: #D5D4D4;
  }

  #teritary-color-2 {
    background-color: #eeeeee;
  }

  #delirium {
    font-family: 'Delirium', sans-serif;
    font-size: 2rem;
    padding-top: 4px;
  }

  #editors-note-light {
    font-family: 'EditorsNote', sans-serif;
    font-weight: 300;
    font-size: 2rem;
  }

  #editors-note-bolditalic {
    font-family: 'EditorsNote', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    font-style: italic;
  }

  #editors-note-regular {
    font-family: 'EditorsNote', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    font-style: normal;
    text-transform: uppercase;
  }

  #aileron-regular {
    font-family: 'Aileron', sans-serif;
    font-weight: 400;
  }

  #aileron-bold {
    font-family: 'Aileron', sans-serif;
    font-weight: 700;
  }

  #gotham {
    font-family: 'GothamBook', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    font-style: normal;
  }


  #metropolis {
    font-family: 'Metropolis', sans-serif;
  }

  #Roboto-Light {
    font-family: 'Roboto', sans-serif;
    font-weight: 300; /* or 400 for Regular */
  }

  #Roboto-Regular {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* or 400 for Regular */
    text-transform: uppercase;
  }

  #Roboto-Regular-normal {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* or 400 for Regular */
  }

  #Oswald-Regular {
    font-family: 'Oswald', sans-serif;
    font-weight: 400; /* or 400 for Regular */
    text-transform: uppercase;
  }

  #space-age {
    font-family: 'SpaceAge', sans-serif;
    font-weight: normal; /* or 400 for Regular */
    font-size: 2rem;
  }

  #Metropolis-Thin {
    font-family: 'MetropolisThin', sans-serif;
    font-weight: 100;
    font-size: 1.2rem;
  }
  
  .button-black{
    display: flex;
    color: #ffffff;
    background-color: #121212;
    border: none;
    padding: 10px 50px;
    width: auto;
    height: 42px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 50px;
    align-items: center;
    gap: 8px;
  }

  .button-black-full-width {
    display: flex;
    color: #ffffff;
    background-color: #121212;
    border: none;
    padding: 10px 16px;         /* Reduced side padding for better fit */
    width: 100%;                /* Full width */
    height: 42px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 50px;
    margin-top: 18px;
    align-items: center;
    justify-content: center;    /* Center text horizontally */
    gap: 8px;
    box-sizing: border-box;     /* Includes padding in width */
  }
  

  .button-black img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .parent-container {
    display: flex;
    justify-content: center;
  }
  
  .service-card {
    background-color: #d5d5d5;
    border-radius: 8px;
    padding: 30px 24px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .service-icon img {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
  }
  
  .service-title {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 12px;
  }
  
  .service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .service-list li {
    display: flex;
    align-items: center; /* ← This vertically centers the icon and text */
    gap: 8px;
    margin-bottom: 12px;
    color: #000;
    font-size: 1rem;
  }
  
  
  .check-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  
  .service__item {
    flex: 0 0 auto;                  /* Kein automatisches Wachstum */
    width: 100%;                    /* Optional: passt sich dem Container an */
    height: auto;                  /* Feste Höhe */
    scroll-snap-align: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: #d5d5d5;
    /*border: 1px solid #0000001a;*/
    position: relative;
    padding: 0;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    font-family: inherit;
  }
  
  .contact-form label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222; /* dark text color */
  }
  
  .contact-form select,
  .contact-form input,
  .contact-form textarea {
    padding: 10px 12px;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    resize: vertical;
    margin-bottom: 20px;
  }

  .contact-form textarea {
    margin-bottom: 0;
  }
  
  .contact-form select:focus,
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #000; /* black border on focus */
    outline: none;
  }
  
  .contact-form textarea {
    min-height: 100px;
    font-family: inherit;
  }

  #impressum-headline {
    color: #121212;
    text-transform: uppercase;
  }

  #impressum-h2 {
    color: #121212;
    text-transform: uppercase;
  }
  
  }
  }
  