.dp-image-map-section {
    padding: 80px 20px;
    background: linear-gradient(220deg, rgba(88, 88, 88, 1) 0%, rgba(56, 56, 56, 1) 100%);
    color: #fff;
}

.dp-map-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 60px;
    align-items: center;
}

.dp-map-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'PP Fraktion Sans', sans-serif;
}

.dp-map-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
}

.dp-map-visual {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.dp-map-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Точки */
.dp-point {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 2;
}

.dp-point-marker {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    position: relative;
}

.dp-point:hover .dp-point-marker {
    transform: scale(1.2);
    background-color: #787e53; /* Акцентный цвет */
}

/* Тултипы */
.dp-point-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 8px;
    width: 200px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 3;
}

.dp-point-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.dp-point:hover .dp-point-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 35px;
}

@media (max-width: 991px) {
    .dp-map-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}