        .contacts-section {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #334155;
            line-height: 1.6;
            padding: 60px 20px;
            background-color: #f8fafc;
        }

        .contacts-section .cs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Заголовок + текст сверху */
        .contacts-section .cs-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contacts-section .cs-header h2 {
            margin-bottom: 10px;
            color: #1e293b;
            font-weight: 600;
        }

        .contacts-section .cs-header p {
            color: #64748b;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Сетка: контакты слева, карта справа */
        .contacts-section .cs-grid {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 0;
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        /* Левая колонка — контактные данные */
        .contacts-section .cs-info {
            padding: 48px 40px;
            background-color: #ffffff;
        }

        /* Секция контактов */
        .contacts-section .cs-contact-block {
            margin-bottom: 40px;
        }

        .contacts-section .cs-contact-block:last-child {
            margin-bottom: 0;
        }

        .contacts-section .cs-block-title {
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e2e8f0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contacts-section .cs-info-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .contacts-section .cs-info-item:last-child {
            border-bottom: none;
        }

        .contacts-section .cs-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .contacts-section .cs-icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: #64748b;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .contacts-section .cs-info-content p,
        .contacts-section .cs-info-content a {
            font-size: 0.95rem;
            color: #475569;
            margin: 0;
            text-decoration: none;
            transition: color 0.2s;
            line-height: 1.5;
        }

        .contacts-section .cs-info-content a:hover {
            color: #2563eb;
        }

        /* Правая колонка — карта */
        .contacts-section .cs-map-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 550px;
        }

        .contacts-section .cs-map-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Адаптивность */
        @media (max-width: 900px) {
            .contacts-section .cs-grid {
                grid-template-columns: 1fr;
            }

            .contacts-section .cs-info {
                padding: 32px 24px;
            }

            .contacts-section .cs-map-wrapper {
                min-height: 350px;
            }

            .contacts-section .cs-header h2 {
                font-size: 1.7rem;
            }
        }