
        /* ========== CONTACTS PAGE - СПЕЦИФИЧНЫЕ СТИЛИ ========== */
        
        /* Заголовок страницы */
        .contacts-header {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 40px 0 40px;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 48px;
        }
        
        .contacts-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
        }
        
        .contacts-desc {
            color: #475569;
            font-size: 1.1rem;
            max-width: 700px;
        }
        
        /* Основная контактная информация */
        .contact-info-section {
            margin-bottom: 60px;
        }
        
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }
        
        .contact-card {
            background: white;
            border-radius: 28px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid #eef2ff;
            transition: all 0.3s;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            border-color: #E31E24;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }
        
        .contact-card h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: #0f172a;
        }
        
        .contact-detail {
            color: #475569;
            line-height: 1.6;
        }
        
        .contact-detail a {
            color: #E31E24;
            text-decoration: none;
        }
        
        .contact-detail a:hover {
            text-decoration: underline;
        }
        
        /* Филиалы */
        .branches-section {
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 32px;
            color: #0f172a;
        }
        
        .branches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }
        
        .branch-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid #eef2ff;
            transition: all 0.3s;
        }
        
        .branch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            border-color: #E31E24;
        }
        
        .branch-header {
            background: #1e293b;
            color: white;
            padding: 20px 24px;
        }
        
        .branch-header h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }
        
        .branch-header p {
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        .branch-content {
            padding: 24px;
        }
        
        .branch-address, .branch-phone, .branch-email, .branch-hours {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: #475569;
        }
        
        .branch-icon {
            font-size: 1.2rem;
            min-width: 24px;
        }
        
        .branch-text {
            flex: 1;
        }
        
        .branch-text strong {
            color: #1e293b;
        }
        
        .branch-phone a, .branch-email a {
            color: #E31E24;
            text-decoration: none;
        }
        
        .branch-phone a:hover, .branch-email a:hover {
            text-decoration: underline;
        }
        
        /* Карта и реквизиты */
        .map-section {
            margin-bottom: 60px;
        }
        
        .map-requisites-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        
        .map-container {
            background: #f1f5f9;
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid #eef2ff;
            min-height: 400px;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            min-height: 400px;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #475569;
        }
        
        .map-placeholder .map-icon {
            font-size: 4rem;
            margin-bottom: 16px;
        }
        
        .map-placeholder p {
            margin-bottom: 16px;
        }
        
        .requisites-card {
            background: white;
            border-radius: 28px;
            padding: 32px;
            border: 1px solid #eef2ff;
        }
        
        .requisites-card h3 {
            font-size: 1.4rem;
            margin-bottom: 24px;
            color: #0f172a;
        }
        
        .requisites-list {
            list-style: none;
        }
        
        .requisites-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eef2ff;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .requisites-list li:last-child {
            border-bottom: none;
        }
        
        .requisites-label {
            font-weight: 600;
            color: #1e293b;
        }
        
        .requisites-value {
            color: #475569;
        }
        
        /* Форма обратной связи */
        .feedback-section {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 32px;
            padding: 48px;
            margin-bottom: 40px;
        }
        
        .feedback-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .feedback-subtitle {
            color: #64748b;
            margin-bottom: 32px;
        }
        
        .feedback-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group.full-width {
            grid-column: span 2;
        }
        
        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #1e293b;
        }
        
        .form-group input, .form-group select, .form-group textarea {
            padding: 12px 16px;
            border: 1px solid #cbd5e1;
            border-radius: 16px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.2s;
            background: white;
        }
        
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: #E31E24;
            box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            grid-column: span 2;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .contacts-title {
                font-size: 1.8rem;
            }
            .map-requisites-grid {
                grid-template-columns: 1fr;
            }
            .feedback-form {
                grid-template-columns: 1fr;
            }
            .form-group.full-width, .form-submit {
                grid-column: span 1;
            }
            .feedback-section {
                padding: 32px 24px;
            }
            .requisites-list li {
                flex-direction: column;
            }
        }