:root{
--p:#155E75;
--s:#38BDF8;
--a:#4FACFE;
--bg:#F8FBFD;
--t:#1F2937;
}
*{margin:0;padding:0;box-sizing:border-box}

.hero-img{
width:100%;
}

.hero-photo{
height:420px;
overflow:hidden;
border-radius:18px;
}

.hero-photo img{
width:100%;
height:100%;
display:block;
object-fit:cover;
object-position:center;
}

.card-img{
display:block;
width:100%;
height:180px;
object-fit:cover;
border-radius:14px;
margin-bottom:16px;
}

body{
font:16px Inter,sans-serif;
background:var(--bg);
color:var(--t);
line-height:1.6
}



.wrap{
max-width:1100px;
margin:auto;
padding:0 20px
}

header{
background:#fff;
position:sticky;
top:0;
z-index:10;
border-bottom:1px solid #e9eef2
}

.top{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 20px
}

.logo{text-decoration:none;color:var(--p);font:700 1.5rem 'Cormorant Garamond',serif}

nav{
display:flex;
gap:20px;
align-items:center
}

nav a{
text-decoration:none;
color:var(--t)
}

.btn{
display:inline-block;
padding:12px 28px;
border-radius:999px;
text-decoration:none;
font-weight:600;
color:#fff!important;
background:linear-gradient(90deg,#0B3C5D,#00A8B5,#0B3C5D);
background-size:200%;
transition:.45s;
}
.btn:hover{
background-position:right center;
}
.menu{
display:none
}


.hero,
.section{
padding:45px 20px
}


.hero .wrap,
.split{
display:grid;
grid-template-columns:1fr 1fr;
gap:35px;
align-items:center
}


h1,h2{font-family:'Cormorant Garamond',serif;color:var(--p)}

h1{font-size:2.6rem;font-weight:700;margin-bottom:16px}

h2{font-size:2.2rem;font-weight:700;margin-bottom:14px}


.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px
}


.card{
background:#fff;
padding:22px;
border-radius:16px;
box-shadow:0 5px 20px rgba(0,0,0,.05)
}


.ph{
height:280px;
border-radius:18px;
background:#eaf3f7;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
color:#567;
font-size:.95rem
}

.card .ph{
height:160px;
margin-bottom: 10px;
}

.person{
width:90px;
height:90px;
border-radius:50%;
background:#eaf3f7;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
margin:auto;
font-size:.8rem;
color:#567;
}

.photo{
width:100%;
height:260px;
object-fit:cover;
border-radius:18px
}


.profile{
display:flex;
align-items:center;
gap:20px
}


.profile img{
width:80px;
height:80px;
border-radius:50%;
object-fit:cover
}


.testimonial{
text-align:center
}


.testimonial img{
width:90px;
height:90px;
border-radius:50%;
background:#eaf3f7;
margin-bottom:15px
}


footer{
background:var(--p);
color:#fff;
padding:30px 0;
margin-top:40px
}


footer a{
color:#fff;
text-decoration:none
}


.foot{
display:flex;
justify-content:space-between
}


@media(max-width:768px){

.hero .wrap,
.split,
.cards{
grid-template-columns:1fr
}

.menu{
display:block
}

.top{
flex-wrap:wrap
}

nav{
display:none;
width:100%;
flex-direction:column;
padding:15px 0
}

.open{
display:flex
}

h1{
font-size:2.2rem
}

}