    <style>
    
        :root {
            --dark-beige: #d1b399;
            --light-beige: #e8c9ae;
            --deep-brown: #523e2d;
            --button-color: #ffffff;
        }   

        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            height: 30vh;
            width: 100%;
            background: #ffffff;
            color: #5a0505;
            padding: 2rem 1rem;
            border-radius: 8px;
            box-sizing: border-box;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
        }

        #cookie-banner p {
            margin:0;
            font-size: 1.2rem;
            text-align: center;
        }

        #cookie-banner .cookie-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            width: auto;
        }

    
         #cookie-banner button {
            background: #5a0505;
            color: #ffffff;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background 0.3s, color 0.3s;
            min-width: 140px;
        }

        #cookie-banner button:hover {
            background: #d1b399;
            color: #ffffff;
        }

        body {
            margin: 0;
            padding: 0;
            background-image: url('images/page-background.png');
            background-size: cover;       
            background-repeat: no-repeat; 
            background-position: center;
            color: var(--deep-brown);
            font-family: "Metamorphous", serif;
            font-weight: 400;
            font-style: normal;
            min-height: 100vh;
        }

        .container {
            text-align: center;
            width: 90%;
            margin: 0 auto;
            padding: 0 1rem;
            max-width: 1200px;
        }
        .header-banner {
            width: 90%;
            padding: 20px 0;
            margin: 40px auto;
            background-color: rgba(252, 250, 249, 0.74);
            text-align: center;
            border-radius: 8px;
        } 

        .header-banner h1 {
            font-size: 2rem;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .header-banner h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .header-banner h3 {
            font-size: 1rem;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .graphic-area {
            width: 100%;
            max-width: 1200px;
            aspect-ratio: 16 / 9;
            margin: 40px auto;
            background-color: var(--light-blue);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .graphic-area img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .action-box {
            position: absolute;
            width: 40%;
            max-width: 350px;
            padding: 20px;
            background-color: #523e2d;
            border: 2px solid var(--button-color);
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 10;
        }

        .btn {
            color: #523e2d;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
        }


        .btn-preview {
            background-color: #ffffff;
            color: #523e2d;
        }

        .btn-preview:hover {
            background-color: rgb(212, 191, 170);
        }
        
        .preview-mobile { display: none; }

        .btn-download {
            background-color: #ffffff;
            color: #523e2d;
        }

        .btn-download:hover {
            background-color: rgb(212, 191, 170);
        }

        p.footer-text {
            margin-top: 20px;
            font-size: 1rem;
            color: #523e2d
        }

        @media (max-width: 768px) {
            
            .header-banner {
                width: 100%;
            }

           .header-banner h1 {
                font-size: 2rem;
                margin-bottom: 20px;
                letter-spacing: 2px;
                text-transform: uppercase;
            }

            .header-banner h2 {
                font-size: 1.5rem;
                margin-bottom: 20px;
                letter-spacing: 2px;
            }

            .header-banner h3 {
                font-size: 1rem;
                margin-bottom: 20px;
                letter-spacing: 2px;
            }
            
            .graphic-area {
                width: 90%;
                aspect-ratio: 9 / 16;      
                height: auto;         
                max-width: none; 
            }

            .graphic-area img {
                width: 100%;
                height: auto;     
                object-fit: cover;
                object-position: center; 
            }

            .action-box {
                width: 70%;             
                max-width: none;
                padding: 15px;
            }

            .preview-desktop {
                display: none;
            }

            .preview-mobile {
                display: inline-block;
            }

            p.footer-text {
            font-size: 0.8rem;
            }
        }
    </style>
