<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You!</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f9;
color: #333;
padding: 50px;
margin: 0;
}
.thank-you-container {
max-width: 600px;
margin: 0 auto;
padding: 30px;
background-color: white;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
font-size: 2.5em;
}
p {
font-size: 1.2em;
line-height: 1.6;
}
.emoji {
font-size: 4em;
margin: 20px 0;
}
.button {
display: inline-block;
margin-top: 20px;
padding: 12px 24px;
background-color: #3498db;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s;
}
.button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<div class="thank-you-container">
<div class="emoji">🙏</div>
<h1>Thank You!</h1>
<p>We sincerely appreciate your time, support, and trust.</p>
<p>Your message has been received and we'll get back to you soon.</p>
<a href="/" class="button">Return Home</a>
</div>
</body>
</html>