        .dtp-content {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
        }
        .dtp-container {
            flex: 0 0 70%;
            max-width: 70%;
        }}
        .dtp-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .dtp-header h1 {
            font-size: 36px;
            color: #1d3557;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
            padding-top: 15px;
        }
        .dtp-header h1:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: #e63946;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .dtp-header h2 {
            font-size: 36px;
            color: #1d3557;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        .dtp-header h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: #e63946;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .dtp-section {
            margin-bottom: 40px;
        }
        .dtp-section h3 {
            font-size: 24px;
            color: #0054a6;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1faee;
        }
        .dtp-section p {
            margin-bottom: 15px;
            line-height: 1.7;
            color: #444;
        }
        .feature-list {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
        }
        .feature-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            line-height: 1.6;
        }
        .feature-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #e63946;
            position: absolute;
            left: 0;
            top: 3px;
        }
        .two-columns {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .column {
            flex: 1;
            min-width: 300px;
        }
        .cta-box {
            background: linear-gradient(135deg, #0054a6, #1d3557);
            border-radius: 10px;
            padding: 30px;
            color: white;
            text-align: center;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .cta-box h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 24px;
        }
        .emergency-btn {
            display: inline-block;
            background: #e63946;
            color: white;
            padding: 16px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            font-size: 18px;
            box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
            margin-top: 15px;
        }
        .emergency-btn:hover {
            background: #d0313d;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(230, 57, 70, 0.5);
        }
        .emergency-btn i {
            margin-right: 10px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        /* Стили для сайдбара */
        .sidebar-block {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .block-title {
            background: linear-gradient(135deg, #0054a6, #1d3557);
            color: white;
            padding: 20px;
            font-size: 20px;
            margin: 0;
            display: flex;
            align-items: center;
        }
        
        .block-title i {
            margin-right: 10px;
            font-size: 24px;
        }
        
        .block-content {
            padding: 20px;
        }
        
        .sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-menu li {
            margin-bottom: 10px;
            position: relative;
            transition: all 0.3s;
        }
        
        .sidebar-menu li:last-child {
            margin-bottom: 0;
        }
        
        .sidebar-menu a {
            display: block;
            padding: 15px 15px 15px 45px;
            color: #444;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
            font-weight: 500;
        }
        
        .sidebar-menu a:before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #0054a6;
            transition: all 0.3s;
        }
        
        .sidebar-menu a:hover {
            background: #f1faee;
            color: #0054a6;
            transform: translateX(5px);
        }
        
        .sidebar-menu a:hover:before {
            color: #e63946;
            transform: translateY(-50%) translateX(5px);
        }
        
        .sidebar-menu .current a {
            background: #f1faee;
            color: #0054a6;
            font-weight: 600;
        }
        
        .sidebar {
            flex: 0 0 28%;
            max-width: 28%;
        }
        
        .sidebar-menu .current a:before {
            color: #e63946;
            content: '\f101';
        }
        
        .contact-card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: #f1faee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: #0054a6;
        }
        
        .contact-info {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
            color: #1d3557;
        }
        
        .contact-label {
            font-size: 14px;
            color: #777;
            margin-bottom: 20px;
        }
        
        .breadcrumbs {
    position: relative;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    padding: 0;
    margin: 0;
    list-style: none;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.8) 0%, 
        rgba(233, 236, 239, 0.8) 100%);
    border-radius: 12px;
    padding: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: #adb5bd;
    font-weight: 300;
    margin: 0 12px;
    font-size: 18px;
    opacity: 0.5;
}

.breadcrumbs a {
    color: #495057;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.breadcrumbs a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(230, 57, 70, 0.1) 0%, 
        rgba(29, 53, 87, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
    color: #e63946;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 6px 20px rgba(230, 57, 70, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.04);
}

.breadcrumbs a:hover::before {
    opacity: 1;
}

/* Текущая страница */
.breadcrumbs span[itemprop="name"]:last-child {
    color: #1d3557;
    font-weight: 700;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: white;
    border-radius: 8px;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(29, 53, 87, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.breadcrumbs span[itemprop="name"]:last-child::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 7px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 100%);
    pointer-events: none;
}

/* Микро-анимация для разделителей */
.breadcrumbs li:not(:last-child):hover::after {
    animation: pulse 0.6s ease;
    color: #e63946;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Адаптивность */
@media (max-width: 768px) {
    .breadcrumbs {
        margin: 20px 0 16px;
        padding: 16px 0;
    }
    
    .breadcrumbs ol {
        padding: 6px;
        gap: 1px;
    }
    
    .breadcrumbs a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .breadcrumbs li:not(:last-child)::after {
        margin: 0 8px;
        font-size: 16px;
    }
    
    .breadcrumbs span[itemprop="name"]:last-child {
        padding: 8px 16px;
    }
}

/* Анимация появления */
.breadcrumbs ol {
    animation: breadcrumbsSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes breadcrumbsSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

         @media (max-width: 992px) {
            .dtp-content {
                flex-direction: column;
            }
            
            .dtp-container, .sidebar {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .sidebar {
                order: 2;
                margin-top: 40px;
            }
        }
        
        /* 5. Адаптивность для мобильных */
        @media (max-width: 768px) {
            .dtp-content {
                padding: 5px 15px;
            }
            
            .two-columns {
                flex-direction: column;
            }
            
            .column {
                min-width: 100%;
            }
            
            /* Стили для страницы консультаций */
.consultation-services {
    background: #f8f9fa;
    padding: 40px 0;
}


.dtp-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.hashtag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.hashtag:hover {
    background: #bbdefb;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .consultation-services {
        padding: 20px 0;
    }
    
    .hashtags {
        justify-content: center;
    }
    
    
}

/* Стили для карты */
.map-container {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


