.elementor-20 .elementor-element.elementor-element-7df153d{--display:flex;}/* Start custom CSS */.contact-container {
            max-width: none;
            width: 100%;
            flex: 1;
            padding: 40px;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .contact-header h1 {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #212529;
        }
        
        .contact-header p {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .contact-item {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.2s ease;
        }
        
        .contact-item:hover .contact-icon {
            background: #013f8d;
        }
        
        .contact-item:hover .contact-icon svg {
            fill: white;
        }
        
        .contact-icon svg {
            width: 30px;
            height: 30px;
            fill: #013f8d;
            transition: fill 0.2s ease;
        }
        
        .contact-item h3 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 15px;
            color: #495057;
        }
        
        .contact-item p, .contact-item a {
            font-size: 1.1rem;
            color: #212529;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        
        .contact-item a:hover {
            color: #013f8d;
        }
        
        .contact-description {
            color: #6c757d;
            font-size: 0.95rem;
            margin-top: 10px;
            margin-bottom: 15px;
        }
        
        .contact-action {
            display: inline-block;
            margin-top: auto;
            padding: 8px 16px;
            background: #f8f9fa;
            color: #495057;
            border-radius: 6px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .contact-action:hover {
            background: #013f8d;
            color: white !important; /* Исправление: текст становится белым при наведении */
        }
        
        .map-section {
            width: 100%;
        }
        
        .map-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-weight: 500;
            color: #495057;
        }
        
        .map-item {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            height: 450px;
        }
        
        .map-container {
            width: 100%;
            height: 100%;
            background: #f8f9fa;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            border: 1px solid #e9ecef;
            position: relative;
        }
        
        .map-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 15px;
        }
        
        .copy-notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #28a745;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 1000;
            font-size: 0.9rem;
        }
        
        .copy-notification.show {
            opacity: 1;
        }
        
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .contact-container {
                padding: 20px;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .contact-header h1 {
                font-size: 1.8rem;
            }
            
            .map-item {
                height: 350px;
            }
        }/* End custom CSS */