body{
font-family: Arial;
margin:0;
background:#f4f6f9;
}

header{
text-align:center;
padding:40px;
background:#0f172a;
color:white;
}

.logo{
width:120px;
}

nav{
background:#111;
padding:15px;
text-align:center;
}

nav a{
color:white;
margin:15px;
text-decoration:none;
font-weight:bold;
}

section{
background:white;
margin:30px auto;
padding:40px;
max-width:1000px;
border-radius:10px;
}

/* Gallery */
.gallery{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.card{
flex:1;
min-width:250px;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.card img{
width:100%;
}

.card p{
padding:10px;
font-weight:bold;
}

/* Brochure */
.brochures a{
display:block;
margin:10px 0;
color:#2563eb;
font-weight:bold;
}

/* Form */
form{
display:flex;
flex-direction:column;
gap:10px;
}

input, textarea{
padding:10px;
border:1px solid #ccc;
border-radius:5px;
}

button{
background:#2563eb;
color:white;
padding:12px;
border:none;
border-radius:5px;
}

/* WhatsApp Button */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}

/* Footer */
footer{
text-align:center;
background:#0f172a;
color:white;
padding:20px;
}