        /*детальные страницы врачей*/
        .container_vrach {
            font-family: 'TTCommons', Arial, sans-serif;
            background:#eeeeee;
            padding:30px;
        }

        /* Первый блок */
        .doctor-profile {
            display: flex;
            gap: 30px;
            
            flex-wrap: wrap;
            max-width: 1160px;
            margin: 0 auto;
            margin-bottom: 30px;
            
        }

        .doctor-profile a { color:#000!important; }

        .profile-card {
            background: white;
            border-radius: 30px;
            padding: 30px;
            padding-bottom:0;
            
        }

        .photo-section {
            flex: 1;
            max-width: 300px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            box-sizing: border-box;
        }

        .doctor-photo {
            width: 100%;
            
            object-fit: cover;
            border-radius: 10px;
            
        }

        .info-section {
            flex: 2;
        }

        .doctor-name {
            font-size: 2rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 10px;
        }

        .doctor-credentials {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .doctor-experience {
            display: flex;
            justify-content: flex-start;
            gap:20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #ecf0f1;
        }

        .experience-item {
            text-align: left;
        }

        .experience-label {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 5px;
        }

        .experience-value {
            font-size: 1.2rem;
            font-weight: bold;
            
        }

        .appointment-btn {
            background: #374030;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            width: fit-content;
            margin-bottom: 20px;
            transition: background 0.3s;
        }

        .appointment-btn:hover {
            background: #899f77;
        }

        .appointment-btn a{color:#fff!important;text-decoration: none;}

        .contact-info {
            margin-bottom: 10px;
        }

        .contact-info a{
            text-decoration:none;
        }

        .contact-label {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 5px;
        }

        .contact-value {
            font-size: 1.2rem;
            color: #2c3e50;
            font-weight: 500;
        }

        /* Второй блок */
        .education-section {
            background: white;
            border-radius: 30px;
            padding: 30px;
            max-width: 1160px;
            margin: 0 auto;
            box-sizing: border-box;
            font-family: 'TTCommons', Arial, sans-serif;
            
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #374030;
        }

        .education-item {
            margin-bottom: 25px;
        }

        .education-text {
            width: max-content;
            line-height: 1.6;
            font-size: 1.2rem;
            max-width: 100%;
        }

        .education-text span{
            display:block;
            border-bottom: 1px solid #ddd;
        }


        /* Адаптивность */
        @media (max-width: 768px) {
            .doctor-profile {
                flex-direction: column;
            }
            
            .photo-section, .info-section {
                flex: none;
            }
            
            .doctor-experience {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        /*детальные страницы врачей END*/