        .tml-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .tml-wrapper {
            background: #ffffff;
            padding: 40px 40px 80px;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        .tml-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .tml-wrapper h1 {
            text-align: center;
            color: #1e293b;
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .tml-subtitle {
            text-align: center;
            color: #64748b;
            margin-bottom: 60px;
            font-size: 1.1em;
        }

        .tml-timeline {
            position: relative;
            padding: 40px 0;
        }

        .tml-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: calc(100% - 40px);
            top: 20px;
            background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(1, 78, 154, 0.3);
        }

        .tml-timeline-item {
            margin-bottom: 80px;
            position: relative;
            display: flex;
            align-items: center;
            min-height: 120px;
        }
        
        .tml-timeline-item:last-child {
            margin-bottom: 0;
        }

        .tml-timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .tml-timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .tml-timeline-content {
            width: 45%;
            background: #ffffff;
            backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 15px;
            border: 2px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .tml-timeline-content:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 40px rgba(1, 78, 154, 0.15);
            border-color: var(--primary-color);
        }

        .tml-timeline-decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            z-index: 1;
            pointer-events: none;
            perspective: 1000px;
        }

        .tml-timeline-item:nth-child(odd) .tml-timeline-decoration {
            right: -220px;
            top: 50%;
            transform: translateY(-50%);
        }

        .tml-timeline-item:nth-child(even) .tml-timeline-decoration {
            left: -220px;
            top: 50%;
            transform: translateY(-50%);
        }

        .tml-timeline-decoration img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
            animation: floatSimple 3s ease-in-out infinite;
        }

        @keyframes floatSimple {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        /* 3D Icon dari CDN */
        .tml-icon-3d {
            position: absolute;
            width: 80px;
            height: 80px;
            top: -40px;
            right: 20px;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
            animation: bounce3d 2s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        @keyframes bounce3d {
            0%, 100% {
                transform: perspective(500px) translateY(0px) rotateY(0deg);
            }
            50% {
                transform: perspective(500px) translateY(-10px) rotateY(180deg);
            }
        }

        .tml-timeline-item:nth-child(odd) .tml-timeline-content {
            margin-right: auto;
        }

        .tml-timeline-item:nth-child(even) .tml-timeline-content {
            margin-left: auto;
        }

        .tml-timeline-marker {
            position: absolute;
            left: 49.2%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: #ffffff;
            border: 4px solid var(--primary-color);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(1, 78, 154, 0.2);
            z-index: 100;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 4px rgba(1, 78, 154, 0.2);
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(1, 78, 154, 0.1);
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        .tml-year {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 1.1em;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(1, 78, 154, 0.4);
        }

        .tml-title {
            color: #1e293b;
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 12px;
        }

        .tml-description {
            color: #475569;
            line-height: 1.6;
            font-size: 0.95em;
        }

        @media (max-width: 991px) {
            .tml-wrapper {
                padding: 40px 30px 80px;
            }

            .tml-container {
                padding: 0 15px;
            }

            .tml-timeline-decoration {
                display: none;
            }

            .tml-timeline-content {
                width: 48%;
            }
        }

        @media (max-width: 768px) {
            .tml-wrapper {
                padding: 40px 20px 60px;
            }

            .tml-container {
                padding: 0 10px;
            }

            .tml-timeline::before {
                left: 30px;
            }

            .tml-timeline-item {
                flex-direction: row !important;
                padding-left: 60px;
                margin-bottom: 50px;
            }

            .tml-timeline-item:nth-child(even) {
                flex-direction: row !important;
            }

            .tml-timeline-content {
                width: 100%;
                margin: 0 !important;
                padding: 25px 20px;
            }

            .tml-timeline-marker {
                left: 20px;
            }

            .tml-timeline-decoration {
                display: none;
            }

            .tml-icon-3d {
                width: 60px;
                height: 60px;
                top: -30px;
                right: 10px;
            }

            .tml-title {
                font-size: 1.2em;
            }

            .tml-description {
                font-size: 0.9em;
            }

            .tml-year {
                font-size: 1em;
                padding: 6px 16px;
            }
        }

        @media (max-width: 480px) {
            .tml-wrapper {
                padding: 30px 15px 50px;
            }

            .tml-timeline::before {
                left: 20px;
            }

            .tml-timeline-item {
                padding-left: 50px;
                margin-bottom: 40px;
            }

            .tml-timeline-marker {
                left: 12px;
                width: 16px;
                height: 16px;
            }

            .tml-timeline-content {
                padding: 20px 15px;
            }

            .tml-icon-3d {
                width: 50px;
                height: 50px;
                top: -25px;
                right: 8px;
            }

            .tml-title {
                font-size: 1.1em;
            }

            .tml-description {
                font-size: 0.85em;
            }

            .tml-year {
                font-size: 0.9em;
                padding: 5px 14px;
            }
        }