
        /* Шапка страницы */
        .print-header {
            background: linear-gradient(135deg, #01559B 0%, #003366 100%);
            color: white;
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            margin-bottom: 60px;
        }

        .print-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }

        .print-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .print-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        /* Основной контент */
        .print-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        /* Главное описание */
        .print-description {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-left: 5px solid #01559B;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .print-description:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(1, 85, 155, 0.15);
        }

        .print-description-title {
            font-size: 1.8rem;
            color: #01559B;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .print-description-title i {
            color: #ff6b00;
        }

        .print-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #475569;
            margin-bottom: 20px;
        }

        .print-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .print-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 12px;
            border-left: 4px solid #ff6b00;
            transition: all 0.3s ease;
        }

        .print-feature:hover {
            transform: translateX(5px);
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .print-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #01559B 0%, #0ea5e9 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }

        .print-feature-text {
            font-weight: 500;
            color: #1e293b;
        }

        /* Продукция */
        .print-products {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-top: 4px solid #0ea5e9;
        }

        .print-products-title {
            font-size: 1.8rem;
            color: #0ea5e9;
            margin-bottom: 30px;
            text-align: center;
        }

        .print-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }

        .print-product-item {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .print-product-item:hover {
            transform: translateY(-5px);
            border-color: #0ea5e9;
            background: white;
            box-shadow: 0 10px 20px rgba(14, 165, 233, 0.15);
        }

        .print-product-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .print-product-item:hover::before {
            opacity: 1;
        }

        .print-product-icon {
            font-size: 28px;
            color: #0ea5e9;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .print-product-item:hover .print-product-icon {
            transform: scale(1.2);
            color: #01559B;
        }

        .print-product-name {
            font-weight: 500;
            color: #1e293b;
            font-size: 0.95rem;
        }

        /* Категории продукции */
        .print-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .print-category-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-top: 4px solid #ff6b00;
        }

        .print-category-card:nth-child(2) {
            border-top-color: #10b981;
        }

        .print-category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .print-category-title {
            font-size: 1.5rem;
            color: #01559B;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .print-category-list {
            list-style: none;
        }

        .print-category-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
            color: #475569;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .print-category-list li:last-child {
            border-bottom: none;
        }

        .print-category-list li i {
            color: #ff6b00;
            font-size: 12px;
        }

        /* Контакты */
        .print-contacts {
            background: linear-gradient(135deg, #01559B 0%, #003366 100%);
            border-radius: 25px;
            padding: 50px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .print-contacts::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .print-contacts-title {
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            color: white;
        }

        .print-contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .print-contact-method {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .print-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .print-contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .print-contact-info {
            flex: 1;
        }

        .print-contact-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 5px;
        }

        .print-contact-value {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .print-contact-link {
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-weight: 600;
            margin-top: 10px;
        }

        .print-contact-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* Декоративные элементы */
        .print-floating-elements {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .print-floating-element {
            position: absolute;
            opacity: 0.1;
            animation: printFloat 20s infinite linear;
        }

        .print-floating-element:nth-child(1) {
            top: 10%;
            left: 5%;
            width: 100px;
            height: 100px;
            background: #01559B;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: 0s;
        }

        .print-floating-element:nth-child(2) {
            top: 70%;
            right: 10%;
            width: 150px;
            height: 150px;
            background: #ff6b00;
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation-delay: -5s;
        }

        .print-floating-element:nth-child(3) {
            top: 40%;
            left: 80%;
            width: 80px;
            height: 80px;
            background: #0ea5e9;
            border-radius: 50%;
            animation-delay: -10s;
        }

        @keyframes printFloat {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, 50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 80px) rotate(240deg);
            }
        }

        /* Анимации для появления элементов */
        .print-animate {
            opacity: 0;
            transform: translateY(30px);
            animation: printFadeInUp 0.8s ease forwards;
        }

        @keyframes printFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .print-description { animation-delay: 0.1s; }
        .print-categories { animation-delay: 0.2s; }
        .print-products { animation-delay: 0.3s; }
        .print-contacts { animation-delay: 0.4s; }

        /* Стили для замены недостающих иконок */
        .fas.fa-brochure:before {
            content: "📄";
            font-family: "Font Awesome 5 Free";
        }

        .fas.fa-flyer:before {
            content: "📋";
            font-family: "Font Awesome 5 Free";
        }

        .fas.fa-book-hard:before {
            content: "📕";
            font-family: "Font Awesome 5 Free";
        }

        .fas.fa-journal:before {
            content: "📓";
            font-family: "Font Awesome 5 Free";
        }

        .fas.fa-sticker:before {
            content: "🏷️";
            font-family: "Font Awesome 5 Free";
        }

        .fas.fa-scroll:before {
            content: "📜";
            font-family: "Font Awesome 5 Free";
        }

        /* Запасные стили если иконки всё равно не загрузились */
        .print-product-item .fa-brochure:before { content: "📄"; }
        .print-product-item .fa-flyer:before { content: "📋"; }
        .print-product-item .fa-book-hard:before { content: "📕"; }
        .print-product-item .fa-journal:before { content: "📓"; }
        .print-product-item .fa-sticker:before { content: "🏷️"; }
        .print-product-item .fa-scroll:before { content: "📜"; }

        /* Адаптивность */
        @media (max-width: 992px) {
            .print-title {
                font-size: 2.5rem;
            }
            
            .print-description, .print-products, .print-contacts {
                padding: 30px;
            }
            
            .print-categories, .print-contact-methods {
                grid-template-columns: 1fr;
            }
            
            .print-products-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .print-header {
                padding: 60px 20px 40px;
                clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            }
            
            .print-title {
                font-size: 2rem;
            }
            
            .print-subtitle {
                font-size: 1.1rem;
            }
            
            .print-description, .print-products, .print-contacts {
                padding: 25px;
            }
            
            .print-contacts {
                padding: 30px;
            }
            
            .print-products-grid {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
                gap: 12px;
            }
            
            .print-contact-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .print-contact-link {
                font-size: 1rem;
                padding: 10px 20px;
            }
        }

        @media (max-width: 576px) {
            .print-title {
                font-size: 1.8rem;
            }
            
            .print-description-title {
                font-size: 1.5rem;
            }
            
            .print-products-title {
                font-size: 1.6rem;
            }
            
            .print-contacts-title {
                font-size: 1.6rem;
            }
            
            .print-features {
                grid-template-columns: 1fr;
            }
            
            .print-products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Подвал */
        .print-footer {
            background: #003366;
            color: white;
            padding: 40px 20px 20px;
            text-align: center;
            margin-top: 60px;
        }

        .print-footer-text {
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto 20px;
            font-size: 0.9rem;
        }