        /* Verhindert Bildauswahl, Dragging und iOS Kontextmenü für Team-Bilder */
        .team-member img {
            user-select: none; /* Standard */
            -webkit-user-select: none; /* Safari */
            -moz-user-select: none; /* Firefox */
            -ms-user-select: none; /* IE 10+ */
            -webkit-touch-callout: none; /* Verhindert iOS Kontextmenü bei langem Druck */
            -webkit-user-drag: none; /* Verstärkt Drag-Verhinderung */
            user-drag: none;
        }

        /* Optional: Verhindert Auswahl des gesamten Textes auf der Karte, falls auch das gewünscht ist */
        /*
        .team-member {
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }
        */

  :root {
      --main-bg: #2c3e50;
      --card-bg: #1f2d3d;
      --highlight: #1abc9c;
      --light-text: #bdc3c7;
      --max-width: 1200px;
      --card-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    
    .titleOfSite {
    max-width: 90vw;
    margin: 0 auto 5vh auto;
    background-color: #34495e;
    color: #1abc9c;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    padding: 20px 0 20px 0;
}

    @media (min-width: 1300px) {
        .titleOfSite {
            max-width: 1200px;
        }
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      min-height: 100%;
      width: 100%;
    }

    body {
      background-color: var(--main-bg);
      color: white;
      display: flex;
      flex-direction: column;
    }

    header {
      background-color: #34495e;
      padding: 3rem 1rem 2rem;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      width: 100%;
    }

    header h1 {
      font-size: 2.5rem;
      letter-spacing: 1.5px;
    }

    .intro-box {
      background-color: #1f2d3d;
      margin: 0 auto;
      padding: 2rem;
      width: 90%;
      max-width: var(--max-width);
      border-radius: 20px;
      box-shadow: var(--card-shadow);
      text-align: center;
    }

    .intro-box p {
      font-size: 1.4rem;
      color: #ecf0f1;
      line-height: 1.6;
    }

    main {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      flex-grow: 1;
    }

    .team-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      padding: 2rem 1.5rem 4rem;
      width: 100%;
      max-width: var(--max-width);
    }

    .team-member {
      background: linear-gradient(160deg, #22303f, #1f2d3d);
      border-radius: 22px;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: var(--card-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      height: auto;
    }

    .team-member:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }

    .team-member img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1.2rem;
      border: 4px solid var(--highlight);
      user-select: none;
      pointer-events: none;
    }

    .team-member h3 {
      margin-bottom: 0.4rem;
      font-size: 1.4rem;
      color: var(--highlight);
    }

    .team-member p {
      font-size: 1.05rem;
      color: var(--light-text);
      margin: 0.3rem 0;
      word-break: break-word;
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }

      .intro-box p {
        font-size: 1.2rem;
      }

      .team-member p {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .intro-box p {
        font-size: 1.1rem;
      }

      .team-member h3 {
        font-size: 1.2rem;
      }
    }
