body {
            font-family: Poppins, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            overflow-x: hidden;
        }
        header, footer {
            background-color: #000;
            color: white;
            text-align: center;
            padding: 20px;
            width: 100%;
            box-sizing: border-box;
            left: 0;
        }        
        @media only screen and (max-width: 768px) {
            .hide-on-mobile {
                display: none;
            }
        }
        .show-on-mobile {
            display: none;
        }
        @media only screen and (max-width: 768px) {
            .show-on-mobile {
                display: block; /* or inline, flex, etc., depending on your layout */
            }
        }
        @media only screen and (max-width: 768px) and (orientation: portrait) {
            .mobile {
               padding-top: 0 !important; 
            }
            .formkit-background {
                background-image: url('https://www.alexnoorlander.com/images/paperbook-mobile.png') !important;
                background-size: contain !important;
                background-repeat: no-repeat !important;
                background-position: center center !important;
                min-height: 300px !important;
            }
        }
        .hero-section {
            color: #000;
            text-align: center;
            padding: 20px 0;
        }
        .blue{
            color: #023ADE;
        }
        .container {
            max-width: 900px;
            margin: 0 auto;            
            padding-left: 20px;
            padding-right: 20px;
        }
        .bulletpoints {
            max-width: 650px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        h1 {
            font-size: 40px;
            line-height: 1.4;
            color: #000;
            text-align: center;
        }
        h2 {
            font-size: 34px;
            color: #000;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 30px;
        }
        h3 {
            font-size: 22px;
            color: #000000;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 30px;
        }
        h3.left-align {
        text-align: left;
        }
        p {
            font-size: 18px;
            line-height: 1.6;
        }

        .logo {
            max-width: 350px;
            margin: 20px auto;
            display: block;
        }

        .form {
            text-align: center;
        }

        .optin {
            display: inline-block;
        }

        .flipped {
            display: inline-block;
            transform: rotate(180deg);
            font-size: 30px;
            animation: upDown 1s ease-in-out infinite;
            position: relative;
        }
        
        .is-ios .flipped {
            font-size: 50px !important;
            display: inline-block;
            transform: rotate(180deg) scaleX(1.6); /* 1.0 = normaal, 1.5 = 50% breder */
        }

        @keyframes upDown {
            0%   { top: 0; }
            50%  { top: -10px; } /* move up */
            100% { top: 0; }     /* back to original */
        }   
        .ecover-img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto; 
            max-width: 350px;
        }

        .pack-image {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto; 
            max-width: 550px;
        }

        .prompt-image {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto; 
            max-width: 750px;
        }

        .cta-button {
            display: block;
            background-color: #4471e5;
            color: #fff;
            text-align: center;
            padding: 15px 30px;
            margin: -30px auto 20px;            
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            font-size: 20px;
        }
        .cta-button:hover {
            background-color: #4471e5;
        }
        .section {
            background-color: #f4f4f4;
            padding: 40px;
            margin: 20px 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .order-section {
            background-color: #f4f4f4;
            padding: 40px;
            margin: 20px 0;
            border-style: dashed;
            border-width: 4px;
        }
       
        .tick ul {
            list-style: none;
            margin-left: 0;
            padding-left: 22px;
            font-size: 20px;
            margin-top: 25px;
        }
        
        .tick ul li {
            margin-bottom: 25px;
        }
        .tick ul li:before {
        content: '✅ ';
            } 
            
        .cross ul {
            list-style: none;
            margin-left: 0;
            padding-left: 22px;
            font-size: 25px;
            margin-top: 25px;
        }
        .cross ul li {
            margin-bottom: 30px;
            font-family: Courier New, monospace;
        }

        .cross ul li:before {
        content: '❌ ';
        }

        @media (max-width: 768px) {
            .container {
                margin: 10px;
                padding: 10px;
            }
            h1 {
                font-size: 32px;
                font-family: Poppins, sans-serif;
                color: #000;
                text-align: center;
            }

            h2 {
                font-size: 24px;
            }
            .ecover-img {
                max-width: 80%;
            }
            .pack-image {
                max-width: 80%;
            }
            .container img + p {
                margin-top: 10px;
            }
        }
        