.service-cities {
    background: #fff;
    padding: 3rem 2rem;
    border-top: 1px solid #eef2ff;
    border-bottom: 1px solid #eef2ff;
}

.service-cities-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-heading h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #1f2a4a;
}

.location-icon {
    font-size: 1.8rem;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.city-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    padding: 1rem 1.5rem;
    border-radius: 999px;

    border: 2px solid #c9d4ff;
    background: #fff;

    font-size: 1rem;
}

.city-pill strong {
    color: #1f2a4a;
}

.city-pill span {
    color: #52618f;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #588EF7;
}

.request-city {
    text-decoration: none;
    color: #588EF7;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.request-city:hover {
    transform: translateX(5px);
}

/* Tablet */
@media (max-width: 1024px) {
    .service-cities-container {
        justify-content: center;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .service-heading {
        width: 100%;
        justify-content: center;
    }

    .cities-list {
        justify-content: center;
    }

    .city-pill {
        width: 100%;
        justify-content: center;
    }

    .request-city {
        width: 100%;
        text-align: center;
    }
}
