.coverage-section {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}
.coverage-section h2 {
    font-size: 2.5em;
    color: #1565c0;
}
.coverage-location {
    margin-bottom: 40px;
}
.coverage-location h3 {
    font-size: 1.5rem;
    color: #1976d2;
}
.coverage-map {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 8px;
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 900px) {
    .coverage-section {
        padding: 10px;
    }
    .coverage-map {
        height: 250px;
    }
}

@media (max-width: 700px) {
    .coverage-section {
        max-width: 90vw;
        padding: 8vw 6vw;
        margin-bottom: 3vh;
    }
    .coverage-section h2 {
        font-size: 1.5em;
    }
    .coverage-location h3 {
        font-size: 1.1rem;
    }
    .coverage-map {
        height: 180px;
    }
}
@media (max-width: 500px) {
    .coverage-section {
        padding: 6vw 3vw;
    }
    .coverage-map {
        height: 120px;
    }
}
