<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Francisco Lugo Associates</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f7f6;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
background-color: #ffffff;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
h1 {
color: #1a365d;
margin-bottom: 10px;
}
p {
font-size: 1.2rem;
color: #4a5568;
}
</style>
</head>
<body>
<div class="container">
<h1>Francisco Lugo Associates</h1>
<p>Our official website is coming online shortly. Thank you for your patience!</p>
</div>
</body>
</html>