{"id":7951,"date":"2025-12-04T07:01:55","date_gmt":"2025-12-04T06:01:55","guid":{"rendered":"https:\/\/paperwise.eu\/lufthansa-chooses-paperwise\/"},"modified":"2026-03-17T10:09:13","modified_gmt":"2026-03-17T09:09:13","slug":"lufthansa-chooses-paperwise","status":"publish","type":"post","link":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/","title":{"rendered":"LUFTHANSA CHOOSES PAPERWISE"},"content":{"rendered":"\n<section class=\"section-hero-paperwise text-color-light\" >\n    <div class=\"hero-background \" style=\"background-image: url('https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg');\">\n\n        \n        <div class=\"container-fluid h-100 pt-4 pb-4\">\n            <div class=\"row h-100\">\n                <div class=\"col-12 d-flex align-items-end\">\n                    <div class=\"hero-content\">\n                                                    <h1 class=\"hero-title\">\n                                <span class=\"hero-title-highlight\">LUFTHANSA CHOOSES<\/span> PAPERWISE                            <\/h1>\n                        \n                        \n                                            <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n<script src=\"https:\/\/www.youtube.com\/iframe_api\"><\/script>\n<script src=\"https:\/\/player.vimeo.com\/api\/player.js\"><\/script>\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n    \/\/ Vimeo can run immediately since the SDK loads synchronously enough\n    const heroVideos = document.querySelectorAll('.hero-video-wrapper iframe');\n    heroVideos.forEach(iframe => {\n        if (iframe.src.includes('vimeo.com')) {\n            const player = new Vimeo.Player(iframe);\n            player.getDuration().then(duration => {\n                player.on('timeupdate', data => {\n                    if (data.seconds >= duration - 1) {\n                        player.setCurrentTime(0).then(() => player.play());\n                    }\n                });\n            });\n        }\n    });\n\n    \/\/ Collect YouTube iframes to initialize once the API is ready\n    window._ytHeroIframes = document.querySelectorAll('.hero-video-wrapper iframe[src*=\"youtube.com\"]');\n});\n\n\/\/ This is called automatically by the YouTube API once it's fully loaded\nwindow.onYouTubeIframeAPIReady = function() {\n    if (!window._ytHeroIframes) return;\n\n    window._ytHeroIframes.forEach(iframe => {\n        const videoId = iframe.src.match(\/embed\\\/([^?&]+)\/)[1];\n        const parent = iframe.parentNode;\n        iframe.remove();\n\n        const ytDiv = document.createElement('div');\n        ytDiv.id = 'yt-hero-' + Math.floor(Math.random() * 10000);\n        ytDiv.classList.add('hero-video');\n        parent.appendChild(ytDiv);\n\n        new YT.Player(ytDiv.id, {\n            videoId: videoId,\n            playerVars: {\n                autoplay: 1,\n                controls: 0,\n                loop: 1,\n                playlist: videoId,\n                mute: 1,\n                modestbranding: 1,\n                disablekb: 1,\n                playsinline: 1\n            },\n            events: {\n                onReady: function(event) {\n                    const duration = event.target.getDuration();\n                    setInterval(() => {\n                        const current = event.target.getCurrentTime();\n                        if (current >= duration - 1) {\n                            event.target.seekTo(0);\n                            event.target.playVideo();\n                        }\n                    }, 800);\n                }\n            }\n        });\n    });\n};\n<\/script>\n<section id=\"section-text-block_096886086a460b2d4c9c67b081f27ce9\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>Contributing positively to a better world by choosing sustainable packaging. Lufthansa aims to make aviation more sustainable and be fully CO2-neutral by 2050. In its search for sustainable solutions, Lufthansa ultimately chose &#8216;in-flight&#8217; PaperWise packaging made from agricultural waste. Both companies have found common ground in their mission to achieve sustainability goals, increase social awareness, and reduce CO2 emissions. Which packaging solutions have been developed? How did this process unfold? And what sustainability results has this yielded?      <\/p>\n<p>SUSTAINABILITY WITHIN AVIATION<br \/>\nThe global population has now surpassed the 8 billion mark. Transporting people and goods across the world provides economic and social benefits, but simultaneously has negative environmental effects. According to calculations, aviation is responsible for approximately 2.5% of global CO2 emissions, contributing significantly to global warming. Airlines, supply chain partners, and governments are becoming increasingly aware of this environmental impact. Therefore, sustainable solutions are being sought to reduce emissions in this sector. Lufthansa\u2014one of the largest airlines in Europe\u2014is taking its responsibility here. &#8220;We believe that sustainable aviation will continue to enable us to benefit from a connected world,&#8221; says Lufthansa.      <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-9.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_e1e54cc3d5d8de660de62405def498c6\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h2>LUFTHANSA GROUP<\/h2>\n<p>Lufthansa was established in 1926 and has now existed for nearly a century! In 2019, before the outbreak of the Corona pandemic, the Lufthansa Group transported more than 145 million passengers in a single year. While the general public knows Lufthansa for its passenger flights, it also encompasses other activities including cargo transport, aircraft maintenance, and catering.  <\/p>\n<h2>LUFTHANSA: CO2 NEUTRALITY BY 2050<\/h2>\n<p>\u201cWe connect people, cultures, and economies across the world \u2013 and that is exactly what we want to continue doing in the future with a clear conscience,\u201d says Lufthansa. As one of the major players in aviation, Lufthansa has a distinct goal: to lead aviation toward a sustainable future and be CO2-neutral by 2050. This means Lufthansa is making a commitment to evaluate, reduce, and offset the CO2 emissions produced.  <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-2.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_f9a9320aeee3ba602abd269b94a7a9f3\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>\u201cTo achieve CO2 neutrality, Lufthansa has rolled out a number of initiatives;<br \/>\nA fuel-efficient fleet must reduce kerosene consumption and thus CO2 emissions per flight by 30%. Fossil fuels must be replaced with sustainable alternatives (Sustainable Aviation Fuel). Ground processes and flight routes are being optimized, leading to greater efficiency in flight operations. Through Lufthansa\u2019s Compensaid platform, passengers can offset their CO2 emissions with long-term climate protection projects. Through partnerships with other transport companies, Lufthansa hubs are becoming accessible via alternative, more environmentally friendly transport options. And \u2018single-use plastics\u2019 are being replaced by sustainable materials. In 2019, more than 370 million \u2018single-use plastics\u2019 were used on board the Lufthansa Group fleet. These are packaging items, often made of plastic, that are used only once and carry a high environmental impact. This needs to change!        <\/p>\n<h2>LUFTHANSA CHOOSES PAPERWISE<\/h2>\n<p>\u2018Single-use plastics\u2019 include disposable packaging used for catering during flights. Think of cups and cutlery, but also the packaging for sandwiches, wraps, and salads. The production of plastic requires oil-based raw materials, significant energy, and labor, and is responsible for high CO2 emissions and other greenhouse gases. This group of packaging is also referred to as disposables and is usually used only once before being discarded. By choosing packaging made from environmentally friendly raw materials, significant environmental savings are achieved and CO2 emissions are avoided.    <\/p>\n<p>Therefore, Lufthansa has renewed its \u2018Onboard Delights\u2019 program, placing great emphasis on selecting packaging made from environmentally responsible raw materials. Packaging made from petroleum-based plastics must make way for recycled and\/or compostable materials. By 2025, Lufthansa aims to have all \u2018single-use plastics\u2019 on board completely removed or exchanged for sustainable alternatives. Hello sustainable packaging from PaperWise!   <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-3.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_2151feb389316191b096654f36a3bfdc\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h2>ENVIRONMENTAL GAIN THROUGH PAPERWISE<\/h2>\n<p>PaperWise is CO2-neutral paper and paperboard made from agricultural waste for packaging and printing. Tree-free and plastic-free. Good for our planet. The sustainable PaperWise packaging for Lufthansa is recyclable, compostable, and food-safe. They are made from 100 percent agricultural waste\u2014stems and leaves left over after the harvest, which is a residual stream from farming. While plastic is (mostly) made from primary raw materials, agricultural waste is a secondary raw material that becomes available annually. Forestry is also a primary raw material with growth times of 10 to 80 years. By creating packaging from PaperWise paperboard, trees are saved and agricultural waste is given a second life. This also means that this agricultural waste is no longer burned in power plants or in the open air. Not burning agricultural waste prevents significant CO2 emissions. Wise With Waste!          <\/p>\n<p>But there is more. Since 2021, PaperWise has been fully CO2-neutral. PaperWise is produced with as little energy as possible and, where possible, with green energy. However, CO2 emissions still occur. Consider the tractors on the fields, the trucks, trains, and ships required for the transport of raw materials and paper. Not all of these yet run on green energy. PaperWise calculates its CO2 emissions across the entire chain and offsets this (via <a href=\"https:\/\/paperwise.eu\/co2-klimaat-neutraal-papier-verpakkingen\/\">Gold Standard<\/a> and <a href=\"https:\/\/paperwise.eu\/co2-klimaat-neutraal-papier-verpakkingen\/\">GoodShipping<\/a>).      <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-10.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_cc90c58be61ea576794b19034ca68fa8\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h2>PLASTIC-FREE PACKAGING FROM AGRICULTURAL WASTE<\/h2>\n<p>Lufthansa\u2019s search for sustainable disposable packaging did not happen overnight. De Ster (a supplier of innovative packaging and service concepts for the aviation and foodservice industry) is the initiator and driver of this project. Sustainability is one of the most important focal points. In addition, several other factors are important when choosing disposable packaging, such as food safety, sturdiness, lightweight properties, grease resistance, appearance, quality, and appropriate presentation.    <\/p>\n<p>Naturally, the packaging must be certified for food safety and be of high quality. Some food products contain fats that can penetrate through packaging. The packaging material must be resistant to this. Space and weight are important criteria on board, so the packaging must also be light and compact. At the same time, it must be sturdy enough to protect the contents during transport. Appearance is also important; the packaging and the product must contribute to the presentation of the meals and the image of Lufthansa. There is a strong preference for packaging that underlines the sustainable character in its look and feel.      <\/p>\n<p>In its search for sustainable disposable packaging, the product innovation team at De Ster arrived at PaperWise. The unbleached PaperWise Natural Grease Resistant paperboard, made from 100% agricultural waste, meets all requirements and, with its light brown natural color, also provides the perfect appearance. <\/p>\n<h2> PROCESS: SUSTAINABLE PACKAGING PROJECT <\/h2>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-12.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_be75283cb8c35e89117d446f656a481c\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>After the initial introduction between De Ster and PaperWise, there was enthusiasm on both sides regarding the potential collaboration. The next step involved the inventory phase of all existing Lufthansa \u2018in-flight\u2019 catering packaging. Which catering packaging and disposables are used on board? From which raw materials were the \u201cold\u201d packaging made? What are the annual volumes for each type of packaging? Who are the current suppliers? Which PaperWise paperboard types could replace the \u201cold\u201d packaging? Which manufacturers could produce this packaging? What will the prices of the packaging be?        <\/p>\n<p>Data was collected from both sides (De Ster and PaperWise) and compiled into an Excel file. With this information, De Ster approached its existing and new suppliers. Demo models were designed and created for all \u2018in-flight\u2019 catering packaging, and quotes were requested. This allowed for a comparison of quality, appearance, sturdiness, processability, and prices. Parallel to this phase, De Ster purchased a minimum quantity of all PaperWise paperboard types and versions. This enabled the product innovation team at De Ster to conduct their own product tests.     <\/p>\n<p>All findings, demo models, and prices were presented to the Lufthansa \u2018in-flight\u2019 catering team, after which the final choices were made. The next step was the try-out phase. Several tens of thousands of versions of all packaging were produced and tested on various continental and intercontinental Lufthansa flights. Based on this large-scale practical test, final adjustments were made to the packaging designs. The Lufthansa \u2018in-flight\u2019 PaperWise range now consists of sustainable PaperWise packaging for sandwiches, apple strudel, cake, salads, and wraps.    <\/p>\n<p>Lufthansa, De Ster, and PaperWise are proud of their collaboration and the result: a complete line of environmentally friendly disposable packaging as part of the renewed Lufthansa \u2018Onboard Delights\u2019 program. Adopting PaperWise is a significant step in sustainability efforts within the aviation industry. <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-4.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_0b5161af0fd6c7a77e816dc82c39b4d6\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h2>THE COMMUNICATION CONCEPT AND ENVIRONMENTAL IMPACT<\/h2>\n<p>The collaboration went beyond just the packaging. Taking concrete steps in the field of sustainability is important. Communicating about sustainability to employees, passengers, and other stakeholders is just as vital. Sharing this information promotes transparency and strengthens engagement and understanding of Lufthansa&#8217;s vision and mission. It makes it clear why Lufthansa makes certain choices and what it aims to achieve. The Lufthansa Group has tens of thousands of employees, many of whom are in direct contact with more than 100 million passengers annually. How do you tell the story of CO2-neutral paperboard made from agricultural waste? What are the best communication tools and channels? Therefore, in their collaboration, Lufthansa and PaperWise developed a communication concept regarding sustainability consisting of several components:        <\/p>\n<h3>1. Info video<\/h3>\n<p>Lufthansa wanted to inform all employees about the sustainable choice for PaperWise and explain what PaperWise is. To this end, PaperWise created a video that reveals the benefits and differences of PaperWise compared to paperboard from trees in 20 seconds. This info video was distributed among Lufthansa staff with the message that additional information about PaperWise is easily accessible by scanning the QR code in the \u2018Onboard Delights\u2019 brochure. Since all flight attendants were also informed in this way, they can, in turn, inform passengers on board if they have questions about PaperWise.   <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-8.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_e129680ca97fb03f38f94ca396f640a0\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h3>2. PaperWise Logo<\/h3>\n<p>On all \u2018in-flight\u2019 catering packaging made from PaperWise, the PaperWise \u2018on product\u2019 logo is printed as a mark of quality. This logo makes it clear to passengers that the packaging is made from PaperWise and ensures recognition. The sustainable origin of PaperWise strengthens the trust of passengers and employees in Lufthansa&#8217;s sustainability policy, leading to extra awareness and stimulating sustainable thinking.  <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-7.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_c32868c7c37421dde79b7a37f88b4e0c\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h3>3. Onboard Delights leaflet and brochure<\/h3>\n<p>The range of food and drinks available during the flight can be found in the \u2018Onboard Delights\u2019 leaflets and brochures provided at every seat. These leaflets and brochures feature a short article about Lufthansa\u2019s choice for sustainability and PaperWise. Under the title \u2018Sustainability at heart,\u2019 passengers are invited to read more about sustainability. If a passenger wants even more information, they can easily do so by scanning the unique QR code provided by PaperWise for Lufthansa. Explaining Lufthansa\u2019s sustainable choice for environmentally friendly catering packaging strengthens passenger confidence in Lufthansa\u2019s sustainability policy.    <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-6.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_a508235aa8929a3b81b248d88aedaae6\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h2>4. ENVIRONMENTAL SAVINGS IN FIGURES<\/h2>\n<p>Clear explanations and insightful figures. PaperWise helped Lufthansa visualize the environmental savings associated with Lufthansa&#8217;s choice for packaging made from PaperWise paperboard. These results and the sources from which the calculations were derived have been compiled into a document used by Lufthansa as a reference and internal communication tool. As an example of an annual result:   <\/p>\n<p>In 2021, Lufthansa gave 185,670 kg of agricultural waste a second life<br \/>\nThis saved 278,505 kg of CO2-eq. by not burning agricultural waste in the open air<br \/>\nThis amount of CO2-eq. is equivalent to 2,282,822 km of driving<br \/>\nThanks to Lufthansa, 1,336 trees were not cut down<br \/>\n18.6 hectares of deforestation were prevented. This corresponds to 19.5 football fields   <\/p>\n<p>By using PaperWise, Lufthansa also helps improve the conditions of local communities in developing countries where PaperWise is produced. Environmentally friendly and socially responsible. Wise With Waste!  <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-5.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_c25eff40f8e30906405e194cd262615d\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h2>MAY WE ALSO HELP YOU ON YOUR JOURNEY TO SUSTAINABILITY?<\/h2>\n<p>How we can preserve our earth affects us all. Whether you work for a large corporation, a small to medium-sized enterprise, or as an independent entrepreneur. Every choice in the right direction helps. Do you also want to leave the world a little more beautiful for the generations after us and reduce your company&#8217;s environmental impact? At the same time, do you want to increase awareness among your employees and business relations? Then we might be a good match. PaperWise would be happy to engage in a conversation with you without obligation.      <\/p>\n<h2>CURIOUS? EXPERIENCE AND TEST: <\/h2>\n<p>Would you like more information, a conversation with PaperWise, or are you looking for paper and paperboard samples in A4 format? Please contact us via the button below, or share this story via one of your social media channels. <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":7952,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[170],"tags":[],"class_list":["post-7951","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-stories"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>LUFTHANSA CHOOSES PAPERWISE - Paperwise<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LUFTHANSA CHOOSES PAPERWISE - Paperwise\" \/>\n<meta property=\"og:url\" content=\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/\" \/>\n<meta property=\"og:site_name\" content=\"Paperwise\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-04T06:01:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-17T09:09:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"786\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"romano\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"romano\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/\"},\"author\":{\"name\":\"romano\",\"@id\":\"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e\"},\"headline\":\"LUFTHANSA CHOOSES PAPERWISE\",\"datePublished\":\"2025-12-04T06:01:55+00:00\",\"dateModified\":\"2026-03-17T09:09:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/\"},\"wordCount\":3,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg\",\"articleSection\":[\"Stories\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/\",\"url\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/\",\"name\":\"LUFTHANSA CHOOSES PAPERWISE - Paperwise\",\"isPartOf\":{\"@id\":\"https:\/\/paperwise.eu\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg\",\"datePublished\":\"2025-12-04T06:01:55+00:00\",\"dateModified\":\"2026-03-17T09:09:13+00:00\",\"author\":{\"@id\":\"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e\"},\"breadcrumb\":{\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#primaryimage\",\"url\":\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg\",\"contentUrl\":\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg\",\"width\":1920,\"height\":786},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/paperwise.eu\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"LUFTHANSA CHOOSES PAPERWISE\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/paperwise.eu\/en\/#website\",\"url\":\"https:\/\/paperwise.eu\/en\/\",\"name\":\"Paperwise\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/paperwise.eu\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e\",\"name\":\"romano\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"caption\":\"romano\"},\"url\":\"https:\/\/paperwise.eu\/en\/author\/romano\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"LUFTHANSA CHOOSES PAPERWISE - Paperwise","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/","og_locale":"en_US","og_type":"article","og_title":"LUFTHANSA CHOOSES PAPERWISE - Paperwise","og_url":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/","og_site_name":"Paperwise","article_published_time":"2025-12-04T06:01:55+00:00","article_modified_time":"2026-03-17T09:09:13+00:00","og_image":[{"width":1920,"height":786,"url":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg","type":"image\/jpeg"}],"author":"romano","twitter_card":"summary_large_image","twitter_misc":{"Written by":"romano"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#article","isPartOf":{"@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/"},"author":{"name":"romano","@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e"},"headline":"LUFTHANSA CHOOSES PAPERWISE","datePublished":"2025-12-04T06:01:55+00:00","dateModified":"2026-03-17T09:09:13+00:00","mainEntityOfPage":{"@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/"},"wordCount":3,"commentCount":0,"image":{"@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#primaryimage"},"thumbnailUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg","articleSection":["Stories"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/","url":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/","name":"LUFTHANSA CHOOSES PAPERWISE - Paperwise","isPartOf":{"@id":"https:\/\/paperwise.eu\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#primaryimage"},"image":{"@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#primaryimage"},"thumbnailUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg","datePublished":"2025-12-04T06:01:55+00:00","dateModified":"2026-03-17T09:09:13+00:00","author":{"@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e"},"breadcrumb":{"@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#primaryimage","url":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg","contentUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/12\/paperwise-lufthansa-story-images-wise-with-waste-airplaine-sustainable-packaging-compostable-paper-11.jpg","width":1920,"height":786},{"@type":"BreadcrumbList","@id":"https:\/\/paperwise.eu\/en\/lufthansa-chooses-paperwise\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/paperwise.eu\/en\/"},{"@type":"ListItem","position":2,"name":"LUFTHANSA CHOOSES PAPERWISE"}]},{"@type":"WebSite","@id":"https:\/\/paperwise.eu\/en\/#website","url":"https:\/\/paperwise.eu\/en\/","name":"Paperwise","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/paperwise.eu\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e","name":"romano","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","caption":"romano"},"url":"https:\/\/paperwise.eu\/en\/author\/romano\/"}]}},"_links":{"self":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/7951","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/comments?post=7951"}],"version-history":[{"count":1,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/7951\/revisions"}],"predecessor-version":[{"id":7968,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/7951\/revisions\/7968"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/media\/7952"}],"wp:attachment":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/media?parent=7951"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/categories?post=7951"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/tags?post=7951"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}