

      

        .container_n {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 20px;
            gap: 40px;
            flex-wrap: wrap;
        }

        .unique-menu {
            width: 100%;
            max-width: 800px;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            margin-bottom: 10px;
            background: white;
            text-decoration: none;
            color: #004080;
            font-size: 16px;
            font-weight: bold;
            border: 1px solid #ccc;
            
        }

        .menu-item span {
            margin-left: 4px;
        }

        .arrow {
            width: 20px;
            height: 20px;
            background: red;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .arrow::after {
            content: '\2192';
            color: white;
            font-size: 14px;
        }

        .menu-item:hover .arrow {
            transform: translateX(5px);
        }

        .image-container_n {
            padding: 0;
        }

        .image-container_n img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border: 1px solid #ccc;
        }

        .container_n2 {
            padding: 20px;
            text-align: center;
        }

        .button_n {
            display: inline-block;
            padding: 10px 20px;
            background-color: #b91f2c;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            margin-top: 20px;
        }

   

        /* Responsywność */
        @media (max-width: 768px) {
            .container_n {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .unique-menu {
                width: 90%;
            }

            .menu-item {
                font-size: 14px;
                padding: 10px;
            }

            .image-container_n {
                display: none; /* Ukrycie obrazu na małych ekranach */
            }
        }