<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Removed - Page Not Found</title>
<meta name="robots" content="noindex, nofollow">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
color: #333;
text-align: center;
padding: 50px;
}
h1 {
font-size: 80px;
margin-bottom: 20px;
color: #e74c3c;
}
h2 {
font-size: 24px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 30px;
}
a {
text-decoration: none;
color: #3498db;
font-size: 18px;
padding: 10px 20px;
border: 1px solid #3498db;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
a:hover {
background-color: #3498db;
color: #fff;
}
</style>
</head>
<body>
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Sorry, the page you are looking for does not exist. It might have been moved or deleted.</p>
<a href="/">Return to Homepage</a>
</body>
</html>