.map_section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section_header {
    text-align: center;
    margin-bottom: 30px;
}

.section_title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section_subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map_legend {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.legend_title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
}

.legend_title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #e74c3c;
    bottom: -8px;
    left: 0;
}

.region_item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.region_item:hover {
    background: rgba(231, 76, 60, 0.1);
}

.region_marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.region_name {
    font-weight: 500;
}

.region_stats {
    margin-top: 30px;
}

.stat_item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    transition: all ease-in-out 0.2s;
}

.stat_item:hover {
margin-top: -10px;
}

.stat_number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 5px;
}

.stat_label {
    font-size: 0.9rem;
    color: #6c757d;
}

.custom-tooltip {
    background: white;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.custom-tooltip:before {
    border-top-color: white !important;
}

@media (max-width: 767.98px) {
    .section_title {
        font-size: 2rem;
    }

    #map {
        height: 400px;
        margin-bottom: 20px;
    }
}