
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --text: #1f2937;
            --text-light: #6b7280;
            --background: #ffffff;
            --card-bg: #f9fafb;
            --border: #e5e7eb;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            --radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #374151;
            background: #f9fafb;
            margin: 0;
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px;
            background: var(--background);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .news-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), #8b5cf6);
        }

        .breadcrumbs {
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--text-light);
        }

        .breadcrumbs a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumbs a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .breadcrumbs span {
            margin: 0 8px;
            color: #9ca3af;
        }

        .news-header {
            margin-bottom: 30px;
            position: relative;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }

        .news-date {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-date::before {
            content: '📅';
            font-size: 16px;
        }

        .news-hero {
            margin: 30px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .news-hero img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-hero:hover img {
            transform: scale(1.02);
        }

        .news-content {
            font-size: 18px;
            line-height: 1.8;
            color: #374151;
        }

        .news-content p {
            margin-bottom: 24px;
        }

        .news-content h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 40px 0 20px;
            color: var(--text);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }

        .news-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 30px 0 15px;
            color: var(--text);
        }

        .news-content ul,
        .news-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .news-content li {
            margin-bottom: 10px;
        }

        .news-content blockquote {
            border-left: 4px solid var(--primary);
            padding: 20px 30px;
            margin: 30px 0;
            background: var(--card-bg);
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: var(--text);
        }

        .news-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
        }

        .news-back {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            margin: 47px 0px 0px;
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
        }

        .back-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
        }

        .back-button::before {
            content: '←';
            font-size: 18px;
        }
          
        h1:not(.news-title) {
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            text-align: center;
            margin: 0 0 40px 0;
            padding: 20px 0;
            position: relative;
        }
        
        h1:not(.news-title):after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #3b82f6;
            border-radius: 2px;
        }

        .news_blocks {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .news_one {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #eaeaea;
        }
        
        .news_one:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .news_image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .news_image a {
            display: block;
            height: 100%;
        }
        
        .news_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news_one:hover .news_image img {
            transform: scale(1.05);
        }
        
        .news_content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news_title {
            margin: 0 0 10px 0;
            font-size: 20px;
            line-height: 1.4;
        }
        
        .news_title a {
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .news_title a:hover {
            color: #0066cc;
        }
        
        .news_date {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .news_date:before {
            content: "📅";
            font-size: 12px;
        }
        
        .news_text {
            color: #444;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
            font-size: 15px;
        }
        
        .news_link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #0066cc;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 10px 0;
            transition: all 0.3s ease;
            width: fit-content;
            border-bottom: 2px solid transparent;
        }
        
        .news_link:hover {
            color: #004d99;
            border-bottom-color: #0066cc;
            gap: 12px;
        }
        
        .news_link span {
            transition: transform 0.3s ease;
        }
        
        .news_link:hover span {
            transform: translateX(5px);
        }
        
        .news_block {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .pagination-container {
            margin-top: 40px;
            padding: 20px 0;
            border-top: 1px solid #eee;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .pagination li {
            margin: 2px;
        }
        
        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 45px;
            height: 45px;
            padding: 0 15px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .pagination a.page {
            background: #f8f9fa;
            color: #495057;
            border: 1px solid #dee2e6;
        }
        
        .pagination a.page:hover {
            background: #e9ecef;
            border-color: #adb5bd;
            transform: translateY(-2px);
        }

        .pagination span.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        
        .pagination a.prev,
        .pagination a.next {
            background: #fff;
            color: #495057;
            border: 1px solid #dee2e6;
            min-width: 100px;
            font-weight: 500;
        }
        
        .pagination a.prev:hover,
        .pagination a.next:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: #764ba2;
        }
        
        .pagination span.disabled {
            background: #f8f9fa;
            color: #adb5bd;
            border: 1px solid #dee2e6;
            cursor: not-allowed;
            opacity: 0.7;
        }
        
        .pagination span.ellipsis {
            color: #6c757d;
            padding: 0 10px;
        }
        
        .pagination a {
            min-width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 2px solid #e0e6ff;
            border-radius: 12px;
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin: 0 4px;
            box-shadow: 0 4px 6px rgba(102, 126, 234, 0.1);
        }
        
        .pagination a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(102, 126, 234, 0.3);
        }
        
        .pagination .active a {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
            box-shadow: 0 6px 12px rgba(102, 126, 234, 0.25);
        }
        
        .pagination .prev a,
        .pagination .next a {
            padding: 0 20px;
            min-width: auto;
            background: #f8faff;
            border: 2px solid #d1d9ff;
        }
        
        .pagination .prev a:hover,
        .pagination .next a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
        }
        
        .pagination .disabled a {
            opacity: 0.4;
            cursor: not-allowed;
            background: #f5f7ff;
            border-color: #e8edff;
            color: #a5b4fc;
        }
        
        .pagination .disabled a:hover {
            background: #f5f7ff;
            border-color: #e8edff;
            color: #a5b4fc;
            transform: none;
            box-shadow: none;
        }
        p {
            font-size: 16px;
            line-height: 1.7;
            color: #4b5563;
            margin: 0 0 1.5em 0;
            font-weight: 400;
        }
        
        p:last-child {
            margin-bottom: 0;
        }
        
        .news-title {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--text), #4b5563);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .news_text p {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1.2em;
        }
        
        .news_text p:first-child {
            margin-top: 0;
        }
        
        .news_text p:last-of-type {
            margin-bottom: 0;
        }
        
        
        
        
        
        
        
         /* Кнопка открытия меню */
         .menu-toggle {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
            background: #1e88e5;
            border: none;
            border-radius: 4px;
            padding: 12px;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: background 0.3s;
        }
        
        .menu-toggle:hover {
            background: #1565c0;
        }
        
        .menu-toggle__bars {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            margin: 6px 4px;
            border-radius: 2px;
        }
        .menu-toggle__text {
            color: #104471;
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-align: center;
            opacity: 0.9;
            position: fixed;
            left: 82px;
            top: 19px;
            width: 57px;
        }
        
        .menu-toggle_close__text{
            color: #fac414;
            position: absolute;
            right: 48px;
            top: 28px;
            width: 51px;
            font-size: 10px;
            text-align: center;
            line-height: 11px;
            cursor: pointer;
        }
        
        .menu-toggle_close__text:hover {
            color: #fff;
        }
        
        /* Боковое меню */
        .side-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 30%;
            min-width: 390px;
            height: 100vh;
            background: #204176;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            z-index: 9999;
            overflow-y: auto;
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Оверлей */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        /* Заголовок меню */
        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
            background: #183159;
        }
        
        .menu-title {
            font-size: 1.5rem;
            color: #fac414;
            font-weight: 600;
        }
        
        .munu-item-breadcrumbs{
            color: #fac414;
            cursor: pointer;
            display: inline-block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: left center;
            margin: 0px;
            padding-left: 20px; /* Место для стрелки */
            position: relative;
        }
        
        .munu-item-breadcrumbs::before {
            content: '←';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 14px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .munu-item-breadcrumbs:hover{
            text-decoration: underline;
            <!-- transform: scale(1.05); -->
            text-shadow: 0 0 2px rgba(250, 196, 20, 0.3);
        }
        
        /* Кнопка закрытия */
        .menu-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fac414;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        
        .menu-close:hover {
            color: #fff;
        }
        
        /* Навигация */
        .menu-nav {
            padding: 20px;
        }
        
        .menu-list {
            list-style: none;
        }
        
        .menu-item {
            margin-bottom: 2px;
        }
        
        .menu-link {
            display: block;
            padding: 4px;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s;
            font-size: 1.1rem;
            cursor: pointer;
        }
        
       
        
        /* Контент страницы */
        .page-content {
            padding: 80px 40px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1 {
            color: #333;
            margin-bottom: 20px;
        }
        
        p {
            line-height: 1.6;
            color: #555;
            margin-bottom: 15px;
        }
        

        
        /* Анимации для иконок */
        .menu-close {
            position: relative;
        }
        
        .menu-close::before,
        .menu-close::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: currentColor;
            border-radius: 1px;
        }
        
        .menu-close::before {
            transform: rotate(45deg);
        }
        
        .menu-close::after {
            transform: rotate(-45deg);
        }
        
        /* Состояние открытого меню */
        body.menu-open {
            overflow: hidden;
        }
        
        body.menu-open .side-menu {
            left: 0;
        }
        
        body.menu-open .menu-overlay {
            opacity: 1;
            visibility: visible;
            white-space: nowrap;
        }
        
        /* Плавная анимация пунктов меню */
        .menu-link {
        white-space: nowrap;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.3s, transform 0.3s, background 0.3s;
        }
        
        body.menu-open .menu-link {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Задержка для каждого пункта */
        .menu-item:nth-child(1) .menu-link {
            transition-delay: 0.1s;
        }
        
        .menu-item:nth-child(2) .menu-link {
            transition-delay: 0.15s;
        }
        
        .menu-item:nth-child(3) .menu-link {
            transition-delay: 0.2s;
        }
        
        .menu-item:nth-child(4) .menu-link {
            transition-delay: 0.25s;
        }
        
        .menu-item:nth-child(5) .menu-link {
            transition-delay: 0.3s;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        @media (max-width: 992px) {
            .news_block {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 25px;
            }
            
            .news_image {
                height: 180px;
            }
        }
        


        /* Адаптивность */
        @media (max-width: 768px) {
            .side-menu {
                width: 100%;
            }
            
            .menu-toggle {
                top: 10px;
                left: 10px;
            }
            
            .page-content {
                padding: 60px 20px 20px;
            }
            .menu-toggle__text {
                font-size: 0.55rem;
                top: 9px;
                left: 68px;
            }
        }
        
        @media (max-width: 480px) {
            .menu-toggle__text {
                display: none;
            }
            
            .menu-toggle {
                padding: 12px;
            }
        }


        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            .news-container {
                padding: 25px;
            }
            
            .news-title {
                font-size: 2rem;
            }
            
            .news-hero img {
                height: 250px;
            }
            
            .news-content {
                font-size: 16px;
            }
            
            .news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .news_block {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .pagination a,
            .pagination span {
                min-width: 40px;
                height: 40px;
                font-size: 14px;
            }
            
            .pagination a.prev,
            .pagination a.next {
                min-width: 80px;
            }
            
            .news_content {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .news_blocks {
                padding: 15px;
            }
            
            .pagination {
                gap: 5px;
            }
            
            .pagination a,
            .pagination span {
                min-width: 35px;
                height: 35px;
                padding: 0 10px;
                font-size: 13px;
            }
            
            .pagination a.prev,
            .pagination a.next {
                min-width: 70px;
                font-size: 13px;
            }
            
            .news_title {
                font-size: 18px;
            }
            
            .news_text {
                font-size: 14px;
            }
            .news-title {
                font-size: 1.7rem;
            }
            
            .news-container {
                padding: 20px;
            }
        }
        
