
body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f4f7fb;
color:#222;
}
*{box-sizing:border-box;}
header{
background:#071f4e;
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:999;
}
header img{
height:60px;
}
nav a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:bold;
}
.hero{
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),url('images/poster1.png');
background-size:cover;
background-position:center;
height:90vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
padding:20px;
}
.hero h1{
font-size:60px;
margin-bottom:20px;
}
.hero p{
font-size:22px;
max-width:850px;
margin:auto;
}
.btn{
display:inline-block;
margin-top:25px;
padding:15px 30px;
background:#16c2dc;
color:white;
text-decoration:none;
border-radius:8px;
font-weight:bold;
}
.container{
width:92%;
margin:auto;
padding:70px 0;
}
.section-title{
text-align:center;
font-size:40px;
color:#071f4e;
margin-bottom:50px;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}
.card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 5px 18px rgba(0,0,0,.08);
text-align:center;
}
.card img{
width:70px;
margin-bottom:15px;
}
.card h3{
color:#071f4e;
}
.dark{
background:#071f4e;
color:white;
}
.feedback{
background:white;
padding:25px;
border-radius:18px;
box-shadow:0 5px 18px rgba(0,0,0,.08);
}
.stars{
color:#ffb400;
font-size:22px;
}
.brochure{
width:100%;
border-radius:18px;
box-shadow:0 5px 18px rgba(0,0,0,.1);
}
.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}
form{
background:white;
padding:35px;
border-radius:18px;
box-shadow:0 5px 18px rgba(0,0,0,.08);
}
input,textarea,select{
width:100%;
padding:14px;
margin-bottom:18px;
border:1px solid #ddd;
border-radius:8px;
}
button{
background:#071f4e;
color:white;
border:none;
padding:14px 25px;
border-radius:8px;
font-size:16px;
cursor:pointer;
}
footer{
background:#071f4e;
color:white;
padding:40px 20px;
text-align:center;
}
@media(max-width:768px){
header{flex-direction:column;}
.hero h1{font-size:38px;}
.contact-grid{grid-template-columns:1fr;}
}
