.global-shipping {
    padding: 40px 0px;
    background-color: #ffffff;
    text-align: center;
}

.global-shipping h2 {
    font-size: 18px;
    color: #0066ff;
    margin-bottom: 40px;
    font-weight: 600;
}

.global-shipping h2 span {
    color: #333333;
}

.global-shipping-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.global-shipping-item {
    padding: 20px;
}

.global-shipping-item h3 {
    font-size: 20px;
    margin: 15px 0;
    line-height: 1.3;
    color: #333333;
}

.global-shipping-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.global-shipping-item img {
    max-width: 150px;
    height: auto;
}

.footer {
    height: 30px;
    background: #000;
    width: 100%;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .global-shipping-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .global-shipping-grid {
        grid-template-columns: 1fr;
    }
    
    .global-shipping h2 {
        font-size: 20px;
    }
} 