
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            height: 100%;
            margin: 0;
            font-family: Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        body {
            padding-bottom: 100px; 
            overflow-x: hidden;
        }
        
        .content {
            max-width: 100%;
            margin: 0 auto;
            display: block;
            background-color: #333;
        }
        
        .content-img {
            width: 100%;
            text-align: center;
            margin:0 auto;
            opacity: 10%;
        }
        
        .content-img img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
        }
  
  
        .cookies {
            position: fixed;
            bottom: 40%;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            background-color: #fff;
            padding: 24px 25px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
            z-index: 9999;
            border-top: 1px solid #eee;
            border-radius: 8px;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }
        
        .cookies.hidden {
            transform: translateY(100%);
        }
        
        .mmm {
            background-color: #fffaf8;
            text-align: center;
            padding: 0 20px 15px;
            margin-bottom: 15px;
        }
        
        .mmm h1 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #fa5e41;
            text-align: start;
        }
        
        .mmm p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
            text-align: start;
            text-wrap: inherit;
        }
        
        .mmm span a {
            color: #7c3a25;
            text-decoration: underline;
            font-weight: normal;
            display: inline-block;
            margin-top: 5px;
        }
        
        .buttons {
            display: flex;
            justify-content: end;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .buttons a {
            text-decoration: none;
            color: #fa5e41;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: bold;
            text-align: center;
            min-width: 100px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .buttons a:first-of-type {
            background-color: #ffff;
            border: 1px solid #fa5e41;
        }
        
        .buttons a:first-of-type:hover {
            background-color: #fa5e41;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .buttons a:last-of-type {
            color: #ffff;
            background-color: #fa5e41;
            border: 1px solid #fa5e41;
        }
        
    
        .buttons a:last-of-type:hover {
            background-color: #ffff;
            color: #fa5e41;
            transform: translateY(-1px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        }


        @media (max-width: 768px) {
            .content {
                padding: 0 15px;
            }
            
            .content-img {
                margin: 0 auto;
            }
            
            .cookies {
                padding: 12px 15px;
                max-width: 95%;
                bottom: 0;
                border-radius: 8px 8px 0 0;
            }
            
            .mmm h1 {
                font-size: 1.25rem;
            }
            
            .mmm p {
                font-size: 0.9rem;
            }
            
            .buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .buttons a {
                width: 100%;
                padding: 12px;
                min-width: auto;
            }
        }
        
        @media (max-width: 480px) {
            .mmm h1 {
                font-size: 1.15rem;
            }
            
            .mmm p {
                font-size: 0.85rem;
            }
            
            .cookies {
                padding: 10px 12px;
            }
        }
        

        .scroll-content {
            max-width: 800px;
            margin: 40px auto;
            padding: 30px;
            background: #f9f7f5;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .scroll-content h2 {
            text-align: center;
            margin-bottom: 20px;
            color: #7c3a25;
        }
        
        .scroll-content p {
            margin-bottom: 15px;
            line-height: 1.7;
        }