       /* Контейнер для демонстрации — максимально приближен к реальному использованию на сайте */
        .banner-container {
            max-width: 1200px;
            width: 100%;
			       
            background: transparent;
            border-radius: 32px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;       
        }

        /* ГОРИЗОНТАЛЬНЫЙ БАННЕР — основная сетка */
        .horizontal-banner {
            display: flex;
            flex-wrap: wrap; /* Адаптивность: на мобилках колонки станут вертикальными */
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.2s;
        }

        /* ЛЕВАЯ ЧАСТЬ: QR-код (ровно 25% ширины на десктопе) */
        .qr-section {
            flex: 0 0 25%;          /* 25% ширины */
            max-width: 25%;
            background: #f6f9fe;    
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 28px 16px;
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            transition: background 0.2s;
        }

        /* Блок QR-кода с плавным эффектом */
        .qr-link {
            display: block;
            text-align: center;
            transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            width: 100%;
            max-width: 160px;
            margin: 0 auto;
        }

        .qr-link:hover {
            transform: scale(1.02);
        }

        .qr-code-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            background: white;
            padding: 8px;
            box-shadow: 0 10px 18px -8px rgba(0, 0, 0, 0.15);
            transition: box-shadow 0.2s;
        }

        .qr-link:hover .qr-code-img {
            box-shadow: 0 18px 28px -10px rgba(0, 0, 0, 0.25);
        }

        .qr-caption {
            margin-top: 12px;
            font-size: 0.75rem;
            font-weight: 500;
            color: #2c3e4e;
            letter-spacing: 0.3px;
            background: rgba(255,255,240,0.7);
            display: inline-block;
            padding: 4px 10px;
            border-radius: 40px;
            backdrop-filter: blur(2px);
        }

        /* ПРАВАЯ ЧАСТЬ (75%): три строки: заголовок, описание, ссылки */
        .info-section {
            flex: 1;                /* занимает оставшееся пространство (75%) */
            padding: 28px 32px 32px 32px;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1rem;
        }

        /* Заголовок */
        .banner-title {
            font-size: 1.9rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0a2540;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #0a2540 0%, #1b4a6e 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0;
        }

        /* Описание */
        .banner-description {
            font-size: 1rem;
            line-height: 1.5;
            color: #2c3e4f;
            font-weight: 450;
            max-width: 90%;
            border-left: 3px solid #f7b32b;
            padding-left: 1rem;
            margin: 0.2rem 0 0.2rem 0;
        }

        /* Группа ссылок (кнопки) */
        .links-group {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.25rem;
            margin-top: 0.5rem;
        }

        /* Ссылка-кнопка СКАЧАТЬ (выделенная) */
        .download-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #0f2b3d;
            color: white;
            padding: 12px 28px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .download-link:hover {
            background: #1e4a6e;
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.3);
        }

        .download-link:active {
            transform: translateY(1px);
        }

        /* Ссылка перехода на страницу проекта */
        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #1f6392;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 60px;
            transition: all 0.2s;
            border: 1px solid #cddfe9;
        }

        .project-link:hover {
            background: #eef4fa;
            border-color: #9bc1db;
            color: #0a4b70;
            transform: translateX(4px);
        }

        /* Стиль для иконок (маленькие emoji / svg) */
        .icon-download, .icon-project {
            font-size: 1.2rem;
            line-height: 1;
        }

        /* Адаптивность: при ширине экрана ≤ 900px левая секция всё ещё 25%, но уменьшаем паддинги */
        @media (max-width: 800px) {
            .info-section {
                padding: 24px 24px 28px 24px;
            }
            .banner-title {
                font-size: 1.6rem;
            }
            .banner-description {
                max-width: 100%;
                font-size: 0.95rem;
            }
        }

        /* На мобильных устройствах (≤ 640px) меняем расположение на вертикальное,
           при этом левая часть (QR) становится полной ширины, а информационная — 100%,
           но сохраняем горизонтальную логику: QR сверху, контент снизу — удобно для тач */
        @media (max-width: 640px) {
            .horizontal-banner {
                flex-direction: column;
            }
            .qr-section {
                flex: 0 0 auto;
                max-width: 100%;
                width: 100%;
                border-right: none;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                padding: 32px 20px;
            }
            .info-section {
                width: 100%;
                padding: 28px 24px 32px 24px;
            }
            .links-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.9rem;
            }
            .download-link, .project-link {
                width: auto;
                justify-content: center;
            }
            .banner-description {
                max-width: 100%;
            }
        }

        /* Доп. микро-анимация для улучшения восприятия */
        @keyframes softAppear {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .info-section > * {
            animation: softAppear 0.4s ease forwards;
        }

        .info-section > *:nth-child(1) { animation-delay: 0.05s; }
        .info-section > *:nth-child(2) { animation-delay: 0.1s; }
        .info-section > *:nth-child(3) { animation-delay: 0.15s; }
        
        /* для простого qr-кода (демонстрационный, генерируем ссылку на скачивание и проект) 
           QR-код ведет на условную страницу/файл, а также можно показать hover эффект */
        .qr-link {
            text-decoration: none;
        }