body{
font-family:Arial;
margin:0;
background:#f4f6f9;
}

header{
background:#1f3b5c;
color:white;
padding:25px;
}

nav a{
color:white;
margin-right:20px;
text-decoration:none;
font-weight:bold;
}

.logo{
height:70px;
margin-right:20px;
}

.header-container{
display:flex;
align-items:center;
}

.tagline{
opacity:.8;
}

.hero{
background:#e6edf4;
padding:40px;
text-align:center;
}

.container{
max-width:1000px;
margin:auto;
padding:40px;
}

.property{
background:white;
padding:25px;
border-radius:8px;
margin-bottom:30px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.gallery{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
margin-top:15px;
}

.gallery img{
width:100%;
border-radius:5px;
}

.available{
color:green;
font-weight:bold;
}

.occupied{
color:red;
font-weight:bold;
}

.future{
color:orange;
font-weight:bold;
}

.map iframe{
width:100%;
height:400px;
border:0;
}

.paybutton{
background:#2e7be5;
color:white;
padding:15px 25px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}

footer{
background:#1f3b5c;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}