        /* Stil für die animierte Liste */
        .animated-list {
            padding: 0;
            margin: 0;
            list-style-type: none;
        }

        .animated-list-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            animation: slideIn 0.5s forwards;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Verzögerung für jedes Listenelement */
        .animated-list-item:nth-child(1) {
            animation-delay: 0.1s;
        }
        .animated-list-item:nth-child(2) {
            animation-delay: 0.2s;
        }
        .animated-list-item:nth-child(3) {
            animation-delay: 0.3s;
        }
        .animated-list-item:nth-child(4) {
            animation-delay: 0.4s;
        }
        .animated-list-item:nth-child(5) {
            animation-delay: 0.5s;
        }
  