  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
        }

        /* ===== MEILENSTEINE SECTION ===== */
        .meilenstein {
            padding: 80px 20px;
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            position: relative;
            overflow: hidden;
        }

        .meilenstein::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .meilenstein-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* ===== LINKE SEITE - BILD ===== */
        .meilenstein-image {
            position: relative;
            animation: slideInLeft 0.8s ease-out;
        }

        .meilenstein-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: transform 0.4s ease;
        }

        .meilenstein-image:hover img {
            transform: scale(1.05);
        }

        /* Dekorative Elemente um das Bild */
        .image-frame {
            position: absolute;
            inset: -20px;
            border: 3px solid rgba(102, 126, 234, 0.2);
            border-radius: 25px;
            pointer-events: none;
            animation: rotateBorder 8s linear infinite;
        }

        @keyframes rotateBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 20px;
            pointer-events: none;
        }

        .image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            animation: slideInUp 0.8s ease-out 0.3s backwards;
        }

        /* ===== RECHTE SEITE - TEXT ===== */
        .meilenstein-text {
            animation: slideInRight 0.8s ease-out;
        }

        .meilenstein-text h1 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 25px;
            line-height: 1.3;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .meilenstein-text p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 35px;
            opacity: 0.9;
        }

        /* ===== BUTTON ===== */
        .btn-primary {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .btn-primary:hover::before {
            transform: translateX(0);
        }

        /* ===== TIMELINE / STATS SECTION ===== */
        .stats-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before,
        .stats-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .stats-section::before {
            top: -100px;
            left: -100px;
        }

        .stats-section::after {
            bottom: -100px;
            right: -100px;
        }

        .stats-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stats-title {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .stats-title h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .stats-title p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .stat-card {
            text-align: center;
            color: white;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            animation: fadeInUp 0.8s ease-out;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            opacity: 0.95;
        }

        /* ===== TIMELINE ===== */
        .timeline-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .timeline-title h2 {
            font-size: 2.2rem;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, #667eea, #764ba2);
        }

        .timeline-item {
            margin-bottom: 50px;
            position: relative;
            animation: fadeInUp 0.8s ease-out;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 0;
            margin-right: auto;
            width: 45%;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
            margin-right: 0;
            width: 45%;
            text-align: left;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: white;
            border: 4px solid #667eea;
            border-radius: 50%;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            width: 30px;
            height: 30px;
            background: #667eea;
            border-color: #764ba2;
            transform: translateX(-50%) scale(1.2);
        }

        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-content {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .timeline-year {
            font-size: 1.5rem;
            font-weight: 800;
            color: #667eea;
            margin-bottom: 10px;
        }

        .timeline-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .meilenstein {
                padding: 50px 20px;
            }

            .meilenstein-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .meilenstein-text h1 {
                font-size: 1.8rem;
            }

            .meilenstein-text p {
                font-size: 1rem;
            }

            .image-frame {
                display: none;
            }

            .stats-section {
                padding: 60px 20px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .timeline::before {
                left: 15px;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                width: 100%;
                margin-left: 60px !important;
                text-align: left !important;
            }

            .timeline-dot {
                left: 15px;
            }

            .timeline-section {
                padding: 60px 20px;
            }

            .timeline-title h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .meilenstein-text h1 {
                font-size: 1.5rem;
            }

            .meilenstein-text p {
                font-size: 0.95rem;
            }

            .btn-primary {
                padding: 12px 30px;
                font-size: 0.9rem;
            }

            .stats-title h2 {
                font-size: 1.8rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.95rem;
            }

            .timeline-title h2 {
                font-size: 1.5rem;
            }
        }