body{
font-family: Arial, Helvetica, sans-serif;
background:#f4f4f4;
margin:0;
padding:0;
text-align:center;
}

/* HEADER */

.header{
position:relative;
padding-top:40px;
}

/* TITLE */

.title{
font-size:42px;
margin-bottom:10px;
}

/* PARAGRAPH (same as about page) */

.subtitle{
width:900px;
max-width:90%;
margin:30px auto;
font-size:18px;
color:#444;
line-height:1.7;
text-align:justify;
}

/* WATERMARK */

.logo-watermark{
position:fixed;
top:50%;
left:50%;
transform:translate(-50%, -50%);
width:220px;
opacity:0.06;
pointer-events:none;
z-index:-1;
}

/* LEADERSHIP SECTION */

.leadership-section{
width:900px;
max-width:90%;
margin:40px auto;
}

/* LEADER CARD */

.leader-box{
background:white;
border-radius:14px;
margin:20px 0;
padding:20px;
box-shadow:0 6px 18px rgba(0,0,0,0.12);
transition:0.3s;
}

/* HOVER EFFECT */

.leader-box:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

/* YEAR */

.leader-box h3{
margin-bottom:10px;
font-size:20px;
color:#2c3e50;
}

/* TEXT */

.leader-box p{
margin:6px 0;
font-size:16px;
color:#444;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

.title{
font-size:34px;
}

.subtitle{
font-size:16px;
}

.logo-watermark{
width:140px;
}

.leader-box h3{
font-size:18px;
}

.leader-box p{
font-size:15px;
}

}

@media (max-width:480px){

.title{
font-size:28px;
}

.subtitle{
font-size:15px;
}

.leader-box{
padding:16px;
}

}