:root{
    --primary-color:#051d41;
    --secondary-color: #ebcd47;
    --tetiary-color: #fd4627;
    --additional-color: #f0f8ff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial,Helvetica,sans-serif;
background:#f5f7fb;
color:#333;
line-height:1.7;

}

.hero{

height:350px;
background:url(images/facilities-banner.jpg) center/cover;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;

}

.hero-content{

position:relative;
color:#fff;
max-width:700px;
padding:20px;

}

.hero h1{

font-size:3rem;
margin-bottom:15px;

}

.intro{

max-width:900px;
margin:70px auto;
text-align:center;
padding:0 20px;

}

.intro h2{

margin-bottom:20px;
color: var(--primary-color);

}

.facilities{

max-width:1200px;
margin:auto;
padding:20px;

}

.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
gap:30px;

}

.facility{

background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;

}

.facility:hover{

transform:translateY(-8px);

}

.facility img{

width:100%;
height:240px;
object-fit:cover;

}

.content{

padding:25px;

}

.content i{

font-size:38px;
color: var(--primary-color);
margin-bottom:15px;

}

.content h3{

margin-bottom:10px;

}

.highlights{

margin:80px auto;
padding:60px 20px;
background:#eef5fb;
text-align:center;

}

.highlights h2{

margin-bottom:40px;

}

.highlight-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:1100px;
margin:auto;

}

.highlight-grid div{

background:#fff;
padding:30px;
border-radius:12px;

}

.highlight-grid i{

font-size:40px;
margin-bottom:15px;
color: var(--primary-color);

}

.tour{

padding:80px 20px;
background: var(--primary-color);
text-align:center;
color:white;

}

.btn{

display:inline-block;
margin-top:25px;
padding:15px 35px;
background:#fff;
color: var(--primary-color);
text-decoration:none;
border-radius:6px;
font-weight:bold;
transition:.3s;

}

.btn:hover{

background:#f1f1f1;

}

@media(max-width:768px){

.hero{

height:250px;

}

.hero h1{

font-size:2.2rem;

}

.grid{

grid-template-columns:1fr;

}

}