body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .container {
            text-align: center;
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .container h1 {
            margin-bottom: 20px;
            color: #333;
        }
        .download-link {
            display: inline-block;
            padding: 15px 40px 15px 20px;
            margin-top: 20px;
            font-size: 18px;
            color: #fff;
            background-color: #007bff;
            border-radius: 5px;
            text-decoration: none;
            position: relative;
            transition: background-color 0.3s ease;
        }
        .download-link:hover {
            background-color: #0056b3;
        }
        .download-link img {
            position: absolute;
            bottom: 10px;
            right: 5px;
            width: 30px;
            height: 30px;
        }
        .info {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }