body{
font-family: Arial;
margin:0;
background:#f4f4f4;
}

header{
background:#0b3d91;
color:white;
text-align:center;
padding:20px;
}

nav ul{
list-style:none;
display:flex;
justify-content:center;
gap:20px;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
}

.hero{
background:url("../images/cafe.jpg");
background-size:cover;
color:white;
text-align:center;
padding:80px;
}

button{
padding:10px 20px;
background:orange;
border:none;
font-size:16px;
cursor:pointer;
}

.service-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
padding:40px;
}

.service{
background:white;
padding:20px;
width:200px;
text-align:center;
border-radius:10px;
}

.service img{
width:100%;
height:150px;
object-fit:cover;
}

table{
width:80%;
margin:auto;
border-collapse:collapse;
}

th,td{
border:1px solid #ccc;
padding:10px;
text-align:center;
}

th{
background:#0b3d91;
color:white;
}

.gallery{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
padding:40px;
}

.gallery img{
width:250px;
border-radius:10px;
}

footer{
background:#0b3d91;
color:white;
text-align:center;
padding:15px;
}