
        :root {
            --bg-color: #0b1329;       /* Deep Midnight Blue (Komplementär-Basis) */
            --card-bg: #1c2541;        /* Abgestimmter, hellerer Blauton für Kacheln */
            --accent-color: #f97316;   /* Angenehmes, modernes Orange */
            --accent-hover: #ea580c;   /* Etwas dunkleres Orange für Hover-Effekte */
            --text-color: #f1f5f9;     /* Klares Off-White für beste Lesbarkeit */
            --text-muted: #94a3b8;     /* Dezentes Grau für Nebeninformationen */
            --spacing: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            padding: calc(var(--spacing) * 2) var(--spacing);
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        /* Flexbox-Header für Text + Foto */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 40px;
            border-bottom: 2px solid var(--card-bg);
            padding-bottom: 30px;
        }

        .header-text {
            flex: 1;
        }

        header h1 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 5px;
        }

        header .subtitle {
            font-size: 1.2rem;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .contact-info span a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-info span a:hover {
            color: var(--accent-color);
        }

        /* Styling fürs Profilbild */
        .profile-image-container {
            flex-shrink: 0;
        }

        .profile-image {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 10%;
            border: 3px solid var(--accent-color);
            box-shadow: 0 4px 14px rgba(249, 115, 22, 0.2);
        }

        /* Sektionen */
        section {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
        }

        h2 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 20px;
            border-left: 4px solid var(--accent-color);
            padding-left: 12px;
        }

        /* Grid für Fähigkeiten */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .skill-card {
            background-color: rgba(11, 19, 41, 0.5);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid transparent;
            transition: border-color 0.3s;
        }

        /* Highlight-Karte für KI-Projekt */
        .skill-card.highlight {
            border-color: rgba(249, 115, 22, 0.4);
            background: linear-gradient(135deg, rgba(28, 37, 65, 0.8) 0%, rgba(11, 19, 41, 0.8) 100%);
        }

        .skill-card h3 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .skill-card p {
            font-size: 0.95rem;
            color: var(--text-color);
        }

        /* Zeitstrahl für Berufserfahrung und Bildung */
        .timeline {
            position: relative;
            border-left: 2px solid rgba(249, 115, 22, 0.3);
            padding-left: 20px;
            margin-left: 10px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 25px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -27px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--accent-color);
            border: 2px solid var(--card-bg);
        }

        .time {
            font-size: 0.85rem;
            color: var(--accent-color);
            font-weight: bold;
        }

        .job-title {
            font-weight: bold;
            color: #fff;
            font-size: 1.1rem;
        }

        .company {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 5px;
        }

        .timeline-item ul {
            list-style-type: square;
            margin-left: 20px;
            font-size: 0.95rem;
        }

        /* Button & Link zu deiner Website */
        .project-link-box {
            text-align: center;
            padding: 20px 0 10px 0;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: #0b1329;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            transition: transform 0.2s, background-color 0.2s;
            box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
        }

        .btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* Responsive Anpassungen */
        @media (max-width: 680px) {
            body {
                padding: var(--spacing) 10px;
            }
            header {
                flex-direction: column-reverse;
                text-align: center;
                gap: 20px;
            }
            .contact-info {
                align-items: center;
            }
            section {
                padding: 20px;
            }
        }

        .Lebenslauf {
            display: inline-block;
            background-color: rgba(11, 19, 41, 0.5);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid transparent;
            transition: border-color 0.3s;
            border-color: var(--accent-color);
            text-decoration: none;
            color: var(--accent-color);
            
            
        }
        .Lebenslauf :hover {
            color: var(--accent-hover);
        }
    