<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Package A</title>
<style>
body {
background-color: #a1c6ff; /* Light blue background to match your image */
font-family: Arial, sans-serif;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
max-width: 600px;
padding: 20px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 20px;
}
.button {
display: inline-block;
background-color: white;
color: #a1c6ff;
border: none;
border-radius: 5px;
padding: 15px 30px;
text-decoration: none;
font-size: 16px;
font-weight: bold;
margin-bottom: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #cfe1ff;
}
.button + p {
margin-top: 40px;
}
</style>
</head>
<body>
<div class=”container”>
<h1>Package A</h1>
<p>Join us now to secure your spot and begin your journey with us right away!</p>
<a href=”#” class=”button”>Buy Now</a>
<p>Schedule a consultation with our team to learn more and get started as soon as possible.</p>
<a href=”#” class=”button”>Learn More</a>
</div>
</body>
</html>