.global-payment-container {
    width: 100%;
    min-height: 80vh;
    max-width: 1200px;
    margin: 40px auto;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
  
.global-payment-content {
    flex: 1;
    max-width: 550px;
}
  
.global-payment-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}
  
.global-payment-title .highlight {
    color: #00cfff;
}
  
.global-payment-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}
  
.global-payment-map-container {
    flex: 1;
    position: relative;
    max-width: 600px;
    max-height: 500px;
}
  
.global-payment-map {
    width: 100%;
    height: auto;
}
  
.global-payment-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    fill: #ff3b30;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.2));
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
        40% {
        transform: translateY(-10px);
    }
        60% {
        transform: translateY(-5px);
    }
}
  
  /* Position all markers with different animation delays */
.global-payment-marker:nth-child(2) { top: 15%; left: 25%; animation-delay: 0.1s; }
.global-payment-marker:nth-child(3) { top: 20%; left: 18%; animation-delay: 0.2s; }
.global-payment-marker:nth-child(4) { top: 25%; left: 32%; animation-delay: 0.3s; }
.global-payment-marker:nth-child(5) { top: 18%; left: 39%; animation-delay: 0.4s; }
.global-payment-marker:nth-child(6) { top: 28%; left: 43%; animation-delay: 0.5s; }
.global-payment-marker:nth-child(7) { top: 25%; left: 50%; animation-delay: 0.6s; }
.global-payment-marker:nth-child(8) { top: 32%; left: 47%; animation-delay: 0.7s; }
.global-payment-marker:nth-child(9) { top: 38%; left: 53%; animation-delay: 0.8s; }
.global-payment-marker:nth-child(10) { top: 20%; left: 60%; animation-delay: 0.9s; }
.global-payment-marker:nth-child(11) { top: 28%; left: 70%; animation-delay: 1.0s; }
.global-payment-marker:nth-child(12) { top: 15%; left: 85%; animation-delay: 1.1s; }
.global-payment-marker:nth-child(13) { top: 40%; left: 78%; animation-delay: 1.2s; }
.global-payment-marker:nth-child(14) { top: 50%; left: 25%; animation-delay: 1.3s; }
.global-payment-marker:nth-child(15) { top: 60%; left: 30%; animation-delay: 1.4s; }
.global-payment-marker:nth-child(16) { top: 53%; left: 45%; animation-delay: 1.5s; }
.global-payment-marker:nth-child(17) { top: 58%; left: 55%; animation-delay: 1.6s; }
.global-payment-marker:nth-child(18) { top: 65%; left: 60%; animation-delay: 1.7s; }
.global-payment-marker:nth-child(19) { top: 45%; left: 70%; animation-delay: 1.8s; }
.global-payment-marker:nth-child(20) { top: 60%; left: 80%; animation-delay: 1.9s; }
.global-payment-marker:nth-child(21) { top: 75%; left: 25%; animation-delay: 2.0s; }
.global-payment-marker:nth-child(22) { top: 80%; left: 55%; animation-delay: 2.1s; }
  
@media (max-width: 900px) {
    .global-payment-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .global-payment-title {
        font-size: 32px;
    }
    .global-payment-description {
        font-size: 0.9rem;
        color: #666;
    }
   
    .global-payment-map-container {
        max-width: 100%;
        max-height: 400px;
    }
        
    .global-payment-content {
        max-width: 80%;
    }
}
