body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #f0f0f0;
            color: #222;
            margin: 0;
        }
        h1,
        .personen-title {
            font-size: 2.1rem;
            margin-top: 40px;
            margin-bottom: 32px;
            color: #54c8c3; /* Hauptfarbe aus styles.css */
            text-align: center;
            letter-spacing: 0.5px;
            font-weight: bold;
        }
        .profile-group {
            margin-bottom: 48px;
            background: linear-gradient(120deg, #e0f7fa 60%, #fff 100%);
            border-radius: 18px;
            box-shadow: 0 4px 18px rgba(84,200,195,0.10), 0 1px 4px rgba(0,0,0,0.06);
            padding: 32px 28px 24px 28px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .profiles {
            display: flex;
            flex-direction: column; /* Profile untereinander */
            gap: 40px;
            align-items: center;
            margin-bottom: 40px;
        }
        .profile {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            background: linear-gradient(120deg, #e0f7fa 60%, #fff 100%);
            border-radius: 18px;
            box-shadow: 0 4px 18px rgba(84,200,195,0.10), 0 1px 4px rgba(0,0,0,0.06);
            padding: 32px 28px 24px 28px;
            max-width: 900px;
            width: 100%;
            transition: transform 0.15s, box-shadow 0.15s;
            cursor: pointer;
        }
        .profile:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 24px rgba(84,200,195,0.16), 0 2px 8px rgba(0,0,0,0.10);
        }
        .profile img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 14px;
            border: 3px solid #54c8c3;
            background: #f8f8f8;
            box-shadow: 0 2px 8px rgba(84,200,195,0.10);
            flex: 1 1 220px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }
        .profile-details {
            flex: 2 1 400px;
            font-size: 1.08rem;
            max-width: 420px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .profile-details p {
            margin: 7px 0;
            line-height: 1.5;
        }
        .profile-details strong {
            color: #0077aa;
            font-weight: 600;
            min-width: 120px;
            display: inline-block;
        }

        @media (max-width: 900px) {
          .profiles {
            gap: 18px;
          }
          .profile-group {
            padding: 18px 6px 12px 6px;
          }
          .profile {
            flex-direction: column;
            gap: 18px;
            padding: 18px 6px 12px 6px;
            max-width: 98vw;
          }
          .profile img {
            width: 110px;
            height: 110px;
          }
          .profile-details {
            max-width: 98vw;
            text-align: center;
          }
          h1,
          .personen-title {
            text-align: center;
            font-size: 1.4rem;
            margin-top: 18px;
            margin-bottom: 18px;
          }
        }