﻿.map-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
}
.small-counters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .small-counters .single-counter {
        flex: 1;
        text-align: center;
    }

        .small-counters .single-counter h4 {
            font-size: 26px; /* smaller number */
            margin-bottom: 4px;
        }

        .small-counters .single-counter h6 {
            font-size: 12px;
            font-weight: 500;
        }
@media (max-width: 576px) {
    .small-counters {
        flex-direction: column;
        gap: 15px;
    }
}
