        .section {
            margin-bottom: 30px;
        }

        .section h2 {
            font-size: 1.4em;
            margin-bottom: 10px;
        }

        .labrador-container {
            position: relative;
            width: 100px;
            height: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            border-radius: 8px; /* Abgerundete Ecken */
            margin: 10px 0;
        }

        /* Farben für die genetischen Variationen */
        .black { background-color: black; }
        .brown { background-color: #8B4513; }
        .yellow { background-color: gold; }
        .beige { background-color: #f5f5dc; }

        .genetic-color {
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 2px solid white;
        }

        .genetic-color.brown {
            background-color: #8B4513; /* Braun */
            top: 50%;
            left: 35%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 5px rgba(139, 69, 19, 0.8);
        }

        .genetic-color.yellow {
            background-color: gold;
            top: 50%;
            left: 65%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 5px rgba(255, 215, 0, 0.8);
        }

        .description {
            font-size: 1em;
            color: #333;
        }

        .code-example {
            background-color: #f4f4f4;
            border: 1px solid #ddd;
            padding: 10px;
            font-family: monospace;
            margin-top: 10px;
            border-radius: 5px;
        }