        /* Grundlegende Stile für den gesamten Körper */
        body {
            background-color: #1a1a1a;
            color: #f0f0f0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            line-height: 1.6;
            animation: fadeIn 1s ease-in-out;
        }

        /* Hauptcontainer für das Profil */
        .profile-container {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            padding: 40px;
            transform: translateY(20px);
            opacity: 0;
            animation: slideInUp 1s forwards;
            animation-delay: 0.5s;
        }

        /* Container für das Profilbild */
        .profile-image-wrapper {
            width: 200px;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
            transform: scale(0.9);
            opacity: 0;
            animation: scaleIn 0.8s forwards;
            animation-delay: 1.2s;
        }

        /* Das Profilbild selbst */
        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .profile-image:hover {
            transform: scale(1.05);
        }

        /* Container für den Text */
        .profile-content {
            display: flex;
            flex-direction: column;
        }

        /* Stil für den Namen */
        .profile-name {
            font-size: 4em;
            font-weight: bold;
            margin: 0 0 10px 0;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.8s forwards;
            animation-delay: 1.5s;
        }

        /* Stil für den Titel */
        .profile-title {
            font-size: 1.8em;
            font-weight: normal;
            color: #aaaaaa;
            margin: 0 0 15px 0;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.8s forwards;
            animation-delay: 1.7s;
        }

        /* Stil für die Beschreibung */
        .profile-description {
            font-size: 1.2em;
            color: #e0e0e0;
            margin: 0 0 30px 0;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.8s forwards;
            animation-delay: 1.9s;
        }
        
        /* Stil für Blog und Education Sektionen */
        .profile-section {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #333;
            opacity: 0;
            transform: translateY(20px);
            animation: slideInUp 0.8s forwards;
        }

        .profile-section-title {
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 15px;
            animation: slideInLeft 0.8s forwards;
        }
        
        .profile-section-item {
            display: block;
            font-size: 1.1em;
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .profile-section-item:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Stil für die Links */
        .profile-links {
            display: flex;
            align-items: center;
            gap: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: slideInUp 0.8s forwards;
            animation-delay: 2.1s;
        }

        .link-item {
            font-size: 1.2em;
            color: #e0e0e0;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icon {
            font-size: 2em;
            color: #e0e0e0;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .link-item:hover,
        .social-icon:hover {
            color: #ffffff;
            transform: translateY(-3px);
        }

        /* Media-Query für kleinere Bildschirme (z.B. Mobilgeräte) */
        @media (max-width: 768px) {
            .profile-container {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .profile-links {
                justify-content: center;
            }
            .profile-name {
                font-size: 3em;
            }
            .profile-title {
                font-size: 1.5em;
            }
            .profile-description {
                font-size: 1em;
            }
            .link-item,
            .social-icon {
                font-size: 1.5em;
            }
        }

        /* =======================================================
           ANIMATION KEYFRAMES
           ======================================================= */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-20px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
