        /* Global Presence Specific Styles */
        .global-hero {
            background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
            color: white;
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .global-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .global-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .global-hero h1::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: #57C5B6;
            margin: 20px auto;
            border-radius: 2px;
        }
        
        .global-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            position: relative;
        }
        
        .global-content {
            padding: 80px 0;
        }
        
        .global-section {
            margin-bottom: 80px;
        }
        
        .global-section:last-child {
            margin-bottom: 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1a5f7a;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background: #57C5B6;
            margin: 15px auto 25px;
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
.location-card {
    background: white;
    border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #1a5f7a;
        }
        
        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .location-header {
            padding: 25px;
            background: #f8f9fa;
            border-bottom: 1px solid #eee;
        }
        
        .location-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #1a5f7a;
            display: flex;
            align-items: center;
        }
        
        .location-header h3 i {
            margin-right: 10px;
            color: #57C5B6;
        }
        
        .location-type {
            display: inline-block;
            padding: 6px 15px;
            background: #e9f7f5;
            color: #159895;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .location-body {
            padding: 25px;
        }
        
        .location-detail {
            margin-bottom: 18px;
            display: flex;
        }
        
        .location-detail i {
            color: #1a5f7a;
            margin-right: 12px;
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
        }
        
        .location-detail div {
            flex: 1;
        }
        
        .location-detail .label {
            font-weight: 600;
            color: #555;
            margin-bottom: 5px;
        }
        
        .location-detail .value {
            color: #666;
            line-height: 1.5;
        }
        
        .map-container {
            margin-top: 60px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 500px;
        }
        
        #global-map {
            height: 100%;
            width: 100%;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
.stat-card {
    background: white;
    border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            border-top: 4px solid #1a5f7a;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a5f7a;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #666;
            font-weight: 600;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .locations-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .global-hero h1 {
                font-size: 2.5rem;
            }
            
            .global-hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .map-container {
                height: 400px;
            }
            
            .locations-grid {
                grid-template-columns: 1fr;
            }
        }
