        /* Базовые стили */
        *,
        ::before,
        ::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* body {
            font-family: 'Roboto', sans-serif;
            color: #1e293b;
            line-height: 1.6;
        } */

        .work_scheme {
            position: relative;
            overflow: hidden;
        }

        .container_1920 {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .work_scheme__hashtag {
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            color: #3b82f6;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .work_scheme__title {
            color: #252525;
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
            position: relative;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .work_scheme__title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        /* Стили для схемы */
        .work_scheme__diagram {
            position: relative;
            padding: 60px 0;
            min-height: 600px;
        }

        .diagram-svg {
            width: 100%;
            max-width: 1000px;
            height: auto;
            margin: 0 auto;
            display: block;
        }

        .diagram-svg path {
            stroke: #3b82f6;
            stroke-width: 2;
            fill: none;
        }

        .diagram-svg circle {
            fill: #3b82f6;
        }

        /* Стили для элементов схемы */
        .diagram-item {
            position: absolute;
            display: flex;
            align-items: flex-start;
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            max-width: 320px;
            z-index: 10;
        }

        .diagram-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
        }

        .diagram-item__number {
            font-size: 20px;
            font-weight: 700;
            color: white;
            background: var(--color-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .diagram-item:hover .diagram-item__number {
            transform: scale(1.1);
        }

        .diagram-item__content {
            flex: 1;
        }

        .diagram-item__title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1e293b;
            line-height: 1.3;
        }

        .diagram-item__text {
            font-size: 13px;
            line-height: 1.4;
            color: #64748b;
        }

        .diagram-item__icon {
            width: 40px;
            height: 40px;
            margin-left: 12px;
            flex-shrink: 0;
            opacity: 0.8;
        }

        /* Позиционирование элементов */
        .diagram-item--1 {
            left: 8%;
            top: 10%;
        }

        .diagram-item--2 {
            left: 38%;
            top: 18%;
        }

        .diagram-item--3 {
            right: 4%;
            top: 30%;
        }

        .diagram-item--4 {
            left: 18%;
            top: 58%;
        }

        /* Кнопка */
        .work_scheme__btn_container {
            text-align: center;
            margin-top: 60px;
        }



        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .diagram-item {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .diagram-item--1 { animation-delay: 0.1s; }
        .diagram-item--2 { animation-delay: 0.2s; }
        .diagram-item--3 { animation-delay: 0.3s; }
        .diagram-item--4 { animation-delay: 0.4s; }

        /* Адаптивность */
        @media (max-width: 1024px) {
            .work_scheme__title {
                font-size: 32px;
                margin-bottom: 50px;
            }
            
            .diagram-svg {
                display: none;
            }
            
            .diagram-item {
                position: relative;
                margin: 0 auto 30px;
                left: auto !important;
                top: auto !important;
                right: auto !important;
                max-width: 500px;
            }
            
            .work_scheme__diagram {
                padding: 30px 0;
                min-height: auto;
            }
        }

        @media (max-width: 768px) {
            .work_scheme {
                padding: 60px 0;
            }
            
            .work_scheme__title {
                font-size: 28px;
                margin-bottom: 40px;
            }
            
            .diagram-item {
                padding: 18px;
                flex-direction: column;
                text-align: center;
            }
            
            .diagram-item__number {
                margin-right: 0;
                margin-bottom: 12px;
                align-self: center;
            }
            
            .diagram-item__icon {
                margin-left: 0;
                margin-top: 12px;
                align-self: center;
            }
        }

        @media (max-width: 480px) {
            .work_scheme__title {
                font-size: 24px;
            }
            
            .work_scheme__hashtag {
                font-size: 14px;
            }
            
            .diagram-item {
                padding: 16px;
            }
            
            .diagram-item__number {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }
            
            .diagram-item__title {
                font-size: 15px;
            }
            
            .diagram-item__text {
                font-size: 12px;
            }
            
            .diagram-item__icon {
                width: 36px;
                height: 36px;
            }
        }


