 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter_24pt-Regular', "PingFang SC", "Microsoft Yahei";
            background: #f0f5ff ;
            min-height: 100vh;
            color: #333;
        }

        .header {
            background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
            padding: 20px 0;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            background: #d2691e;
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 2px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .header h1 {
            color: white;
            font-size: 2.5rem;
            font-weight: 300;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            flex: 1;
            text-align: center;
            margin: 0 20px;
        }

        .container-project {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 40px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .map-section {
            opacity: 0;
            animation: fadeInLeft 0.8s ease-out 0.2s forwards;
        }

        .table-section {
            opacity: 0;
            animation: fadeInRight 0.8s ease-out 0.4s forwards;
        }

        .section-title {
            color: #f8a056 ;
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
            
            letter-spacing: 1px;
        }

        .map-container {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .map-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #d2691e, #cd853f);
        }

        .world-map {
            width: 100%;
            height: auto;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .world-map:hover {
            transform: scale(1.05);
        }

        .legend {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 15px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 3px;
        }

        .footsteps { background: #4a90e2; }
        .countries { background: #d2691e; }
        .offices { background: #e74c3c; }
        .projects { background: #27ae60; }

        .table-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            position: relative;
        }

        .table-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #d2691e, #cd853f);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        th {
            background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
            color: white;
            padding: 18px 12px;
            text-align: left;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }

        tbody tr {
            opacity: 0;
            animation: slideInUp 0.6s ease-out forwards;
            transition: all 0.3s ease;
        }
  
        tbody tr:nth-child(1) { animation-delay: 0.1s; }
        tbody tr:nth-child(2) { animation-delay: 0.15s; }
        tbody tr:nth-child(3) { animation-delay: 0.2s; }
        tbody tr:nth-child(4) { animation-delay: 0.25s; }
        tbody tr:nth-child(5) { animation-delay: 0.3s; }
        tbody tr:nth-child(6) { animation-delay: 0.35s; }
        tbody tr:nth-child(7) { animation-delay: 0.4s; }
        tbody tr:nth-child(8) { animation-delay: 0.45s; }
        tbody tr:nth-child(9) { animation-delay: 0.5s; }

        tbody tr:hover {
            background: linear-gradient(90deg, rgba(210, 105, 30, 0.1), rgba(205, 133, 63, 0.1));
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        td {
            padding: 15px 12px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            vertical-align: top;
        }

        .phase-cell {
            font-weight: 700;
            color: #d2691e;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, rgba(210, 105, 30, 0.1), rgba(205, 133, 63, 0.1));
            position: relative;
        }

        .phase-cell::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(135deg, #d2691e, #cd853f);
        }

        .country {
            font-weight: 600;
            color: #555;
        }

        .project-name {
            font-weight: 600;
            line-height: 1.6;
        }

        .project-name a {
            color: #d2691e;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 2px 0;
            display: inline-block;
        }

        .project-name a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d2691e, #cd853f);
            transition: width 0.3s ease;
        }

        .project-name a:hover {
            color: #cd853f;
            transform: translateX(3px);
        }

        .project-name a:hover::after {
            width: 100%;
        }

        .equity-ratio {
            font-weight: 600;
            font-size: 0.7rem;
            color: #d2691e;
            text-align: center;
        }

        .equity-100 {
            color: #e74c3c;
            background: rgba(231, 76, 60, 0.15);
            border-radius: 8px;
            padding: 5px 8px;
            animation: pulse 2.5s infinite;
        }

        .operator {
            color: #666;
            font-style: italic;
            line-height: 1.4;
            font-size: 0.9rem;
        }

        .operator-highlight {
            font-weight: 600;
            color: #333;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .header h1 {
                font-size: 1.8rem;
                margin: 0;
            }

            .logo {
                font-size: 1.5rem;
                padding: 12px 20px;
            }

            .container {
                padding: 20px 15px;
            }

            table {
                font-size: 0.8rem;
            }

            th, td {
                padding: 10px 8px;
            }

            .legend {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Notification styles */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #d2691e, #cd853f);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: slideInNotification 0.3s ease-out;
            max-width: 350px;
        }

        @keyframes slideInNotification {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutNotification {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }

 

    </style>