* {

.hero h1 {
    color: white;
    font-size: 56px;
    margin-bottom: 15px;
}

.hero p {
    color: #f0f0f0;
    font-size: 24px;
}

.cities {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.cities button {
    padding: 18px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0057b7, #003f88);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cities button:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #0077ff, #0057b7);
}

footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: #ddd;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }
}