        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 1100px;
            margin: 50px auto;
            padding: 30px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 10px;
        }

        h1, h2 {
            color: #333;
        }

        p {
            line-height: 1.6;
            color: #555;
        }

        .member.boss {
            border: 3px solid #d4af37; /* Goldfarbener Rahmen */
            background-color: #fffbea;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
            position: relative;
        }
        
        .member.boss h3 {
            color: #d4af37;
        }
        
        .badge {
            background-color: #d4af37;
            color: white;
            font-size: 12px;
            padding: 3px 7px;
            margin-left: 8px;
            border-radius: 5px;
            vertical-align: middle;
        }        

        .team {
            margin-top: 40px;
        }

        .team-members {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .member {
            flex: 1 1 250px;
            background-color: #fafafa;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 5px rgba(0,0,0,0.05);
        }

        .member img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 15px;
        }

        .member h3 {
            margin: 10px 0 5px;
            color: #222;
        }

        .member p {
            font-size: 14px;
            color: #666;
        }

        @media (max-width: 768px) {
            .team-members {
                flex-direction: column;
                align-items: center;
            }
        }