        /* Стили для страницы врачей*/
        .doc-page {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: #2c3e50;
            line-height: 1.6;
            max-width: 1140px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .doc-header {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: #f8fafc;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .doc-photo {
            flex: 0 0 280px;
            max-width: 280px;
            width: 100%;
        }

        .doc-photo img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            background-color: #e2e8f0;
        }

        .doc-main-info {
            flex: 1;
            min-width: 300px;
        }

        .doc-title {
            font-size: 32px;
            margin: 0 0 10px 0;
            color: #0f172a;
            font-weight: 700;
        }

        .doc-subtitle {
            font-size: 18px;
            color: #7790cc;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .doc-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .doc-tag {
            background: #7790cc;
            color: #fff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .doc-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 25px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .btn-primary {
            background-color: #7790cc;
            color: #ffffff !important;
        }

        .btn-primary:hover {
            background-color: #546795;
        }

        .btn-vk {
            background-color: #7790cc;
            color: #ffffff !important;
        }

        .btn-vk:hover {
            background-color: #546795;
        }

        .doc-section {
            margin-bottom: 40px;
        }

        .doc-section h2 {
            font-size: 24px;
            color: #0f172a;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        /* Таблица цен */
        .price-table {
            width: 100%;
            border-collapse: collapse;
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .price-table th, .price-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }

        .price-table th {
            background: #f1f5f9;
            font-weight: 600;
        }

        .price-category-hdr {
            background: #f8fafc;
            color: #7790cc;
            font-weight: 700;
            font-size: 16px;
            border-bottom: 2px solid #cbd5e1 !important;
            padding-top: 18px !important;
            padding-bottom: 12px !important;
        }

        .price-table .price-val {
            font-weight: 700;
            color: #7790cc;
            white-space: nowrap;
            text-align: right;
            width: 120px;
        }

        /* Список Услуг */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
        }

        .service-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 15px 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .service-card .icon {
            color: #0284c7;
            font-weight: bold;
        }

        /* График работы */
        .schedule-box {
            background: #fff;
            border: 1px solid #7790cc;
            border-radius: 12px;
            padding: 20px;
            color: #000;
        }

        .schedule-list {
            list-style: none;
            padding: 0;
            margin: 10px 0 0 0;
        }

        .schedule-list li {
            margin-bottom: 8px;
        }

        /* Адаптив для телефонов */
        @media (max-width: 768px) {
            .doc-header {
                flex-direction: column;
                padding: 20px;
            }
            .doc-photo {
                max-width: 100%;
                margin: 0 auto;
            }
            .doc-title {
                font-size: 24px;
            }
            .doc-actions {
                flex-direction: column;
            }
            .btn {
                width: 100%;
                box-sizing: border-box;
            }
            .price-table th, .price-table td {
                padding: 10px 12px;
                font-size: 14px;
            }
        }