
.locations-section {
    background-color: #161616;
    padding: 50px 0 60px;
}

.locations-main-heading {
    color: white;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.3;
}

.locations-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-tag-pill {
    background-color: white;
    color: #242424;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.location-tag-pill:hover {
    background-color: #f0f0f0;
    color: #1f2020;
    transform: translateY(-2px);
}

.location-count-badge {
    color: #666;
    font-weight: 400;
}


@media (max-width: 768px) {
  
    .locations-main-heading {
        font-size: 1.4rem;
    }

    .locations-tags-container {
        padding: 0 15px;
    }
}