.about-company-section {
    padding: 40px 0 60px;
    background: #ffffff;
}

.about-company-container {
    max-width: 100%;
    margin: 0 auto;
}

.about-company-title {
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-company-text {
    max-width: 900px;
    margin-bottom: 30px;
}

.about-company-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.about-company-link {
    font-size: 14px;
    color: #00acc1;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.about-company-link:hover {
    color: #008ba3;
}

.cities-title {
    font-size: 22px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 25px;
}

.cities-map-block {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    position: relative;

    border-radius: 8px;
    padding: 30px;
    min-height: 400px;
}

.cities-map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.russia-map {
    width: 100%;
    height: 100%;
    display: block;
}

.map-path {
    fill: #e8ecef;
    stroke: #d0d5dc;
    stroke-width: 1;
}

.city-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.city-btn {
    position: absolute;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid #d0d5dc;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 500;
    color: #212121;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: auto;
}

.city-btn:hover {
    background: #f0f0f0;
    border-color: #00acc1;
}

.city-btn.active {
    background: #00acc1;
    border-color: #00acc1;
    color: #ffffff;
}

.city-info-panel {
    background: #00acc1;
    border-radius: 8px;
    padding: 24px;
    color: #ffffff;
    max-height: 390px;
}

.city-info-content {
    position: relative;
    height: 100%;
}

.about-company-section .about-company-text, .about-company-section h3{
    position:relative;
}

.city-info {
    animation: fadeIn 0.3s ease;
}



@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.city-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color:white;
}

.city-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.city-data {
    margin-bottom: 25px;
}

.data-row {
    margin-bottom: 18px;
}

.data-row:last-child {
    margin-bottom: 0;
}

.data-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.data-value {
    display: block;
    font-size: 13px;
    line-height: 1.5;
}

.data-value.phone {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.data-value.phone:hover {
    opacity: 0.8;
}

.data-value.address {
    color: #ffffff;
}

.data-value.schedule {
    color: #ffffff;
    font-weight: 500;
}

.contact-btn {
    background: #212121;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

.about-company-container .mob {
    display: none;
}

.about-company-container .pc {
    display: block;
}

@media (max-width: 991px) {
    .cities-map-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cities-map-wrapper {
        min-height: 300px;
    }
    
    .city-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    .about-company-container .pc {
        display: none;
    }
    .about-company-container .mob {
        display: block;
    }
}

@media (max-width: 575px) {
    .about-company-title {
        font-size: 24px;
    }
    
    .cities-title {
        font-size: 18px;
    }
    
    .cities-map-block {
        padding: 20px;
    }
    
    .city-info-panel {
        padding: 18px;

    }
    
    .city-btn {
        padding: 5px 8px;
        font-size: 9px;
    }
}
