/* Extracted from inline <style> */
/* Стили для страницы контактов */
        .contacts-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .contacts-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        .contacts-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .contacts-title {
            font-size: 2.5rem;
            color: #1a3e72;
            margin-bottom: 30px;
            text-align: center;
        }
        
        /* Блок с контактной информацией */
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: #f0f7ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 1.5rem;
            color: #1a6db3;
        }
        
        .contact-details h3 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .contact-details p {
            color: #666;
            line-height: 1.6;
        }
        
        .contact-link {
            color: #1a6db3;
            text-decoration: none;
            font-weight: 500;
            display: block;
            margin-top: 5px;
        }
        
        .contact-link:hover {
            text-decoration: underline;
        }
        
        /* Рабочее время */
        .working-hours {
            background: #f0f7ff;
            padding: 25px;
            border-radius: 15px;
            margin-top: 30px;
        }
        
        .working-hours h3 {
            color: #1a3e72;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .hours-list {
            list-style: none;
            padding: 0;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(26, 109, 179, 0.1);
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .day {
            color: #555;
        }
        
        .time {
            color: #1a6db3;
            font-weight: 500;
        }
        
        /* Форма обратного звонка */
        .callback-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .form-title {
            font-size: 1.8rem;
            color: #1a3e72;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .form-label.required:after {
            content: " *";
            color: #e74c3c;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #1a6db3;
            box-shadow: 0 0 0 3px rgba(26, 109, 179, 0.1);
        }
        
        .form-hint {
            font-size: 0.85rem;
            color: #777;
            margin-top: 5px;
        }
        
        .callback-notification {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            display: none;
            align-items: center;
            gap: 12px;
            animation: slideIn 0.3s ease-out;
        }
        
        .callback-notification.success {
            background: #eaffea;
            color: #27ae60;
            border-left: 4px solid #27ae60;
        }
        
        .callback-notification.error {
            background: #ffeaea;
            color: #d63031;
            border-left: 4px solid #d63031;
        }
        
        .callback-notification i {
            font-size: 1.2rem;
        }
        
        /* Карта */
        .map-section {
            margin-top: 50px;
        }
        
        .map-placeholder {
            background: #e9ecef;
            border-radius: 15px;
            height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #666;
            text-align: center;
            padding: 20px;
        }
        
        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #1a6db3;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .contacts-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .contacts-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .contacts-card, .callback-form {
                padding: 25px;
            }
            
            .contact-info-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
            }
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* Extracted from inline style attributes */
.inl-bc3f54f0{color: #1a3e72; margin-bottom: 30px; font-size: 1.8rem;}
.inl-8897ded3{font-size: 0.9rem; color: #777; margin-top: 10px;}
.inl-a113cc1f{font-size: 0.9rem; color: #777; margin-top: 5px;}
.inl-d4ed7ef2{color: #e74c3c; font-weight: 600;}
.inl-ad2f9105{color: #e74c3c;}
.inl-7f3a0199{width: 100%; padding: 16px; font-size: 1.1rem;}
.inl-337faade{margin-top: 20px; text-align: center; color: #666; font-size: 0.9rem;}
.inl-73599557{color: #1a6db3;}
.inl-1d9f9e10{color: #1a3e72; margin-bottom: 20px; text-align: center;}
.inl-0de1f981{margin-top: 20px;}
.inl-12fb8ae2{margin-right: 10px;}
