<!DOCTYPE html>
<html>
<head>
<title>Regil Abogados</title>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
background:#f4f4f4;
display:flex;
align-items:center;
justify-content:center;
height:100vh;
margin:0;
}
.box{
background:white;
padding:40px;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
text-align:center;
max-width:500px;
}
h1{
margin:0;
font-size:32px;
color:#222;
}
p{
color:#666;
font-size:16px;
}
.email{
margin-top:20px;
font-weight:bold;
}
</style>
</head>
<body>
<div class="box">
<h1>Regil Abogados</h1>
<p>Website under construction.</p>
<p class="email">
Contact: [email protected]
</p>
</div>
</body>
</html>