.h2ss {
    font-size: 30px;
    line-height: 40px;
    color: #322e29;
}

.global-presence {
    text-align: center;
    margin-bottom: 40px;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
}

.country-item {
    background: #f8f8f8;
    padding: 15px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.country-item:hover {
    background: #2d406e;
}

.country-item a {
    text-decoration: none;
    color: #322e29;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.country-item:hover a {
    color: #fff;
}
.padding60{padding: 60px 0 60px 0;}

@media (max-width: 991px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .country-grid {
        grid-template-columns: 1fr;
    }
}
.text-center{
    text-align: center;
}
