*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter,sans-serif;
background:#050b18;
color:white;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
width:100%;
top:0;
background:#000;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
height:50px;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

nav a.active{
color:#d4af37;
}

.about-hero{
padding:160px 0 80px;
text-align:center;
background:
linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.9)),
url('assets/dubai.jpg');
background-size:cover;
}

.about-hero h1{
font-size:48px;
margin-bottom:10px;
}

.section{
padding:100px 0;
}

.story-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:60px;
}

.story-highlight{
background:#0e1c37;
padding:30px;
border-radius:8px;
}

.story-highlight ul{
list-style:none;
}

.story-highlight li{
margin-bottom:10px;
}

.dark{
background:#08162f;
}

.principles{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.principle{
background:#0e1c37;
padding:30px;
border-radius:8px;
}

.leader-grid{
display:grid;
grid-template-columns:350px 1fr;
gap:60px;
align-items:center;
}

.leader-image img{
width:100%;
border-radius:10px;
}

.role{
color:#d4af37;
margin-bottom:10px;
}

.cta{
text-align:center;
}

.btn{
background:#d4af37;
color:black;
padding:14px 30px;
border-radius:6px;
text-decoration:none;
}

.footer{
background:#020712;
padding:70px 0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
}

.footer-logo{
height:50px;
margin-bottom:10px;
}

.footer ul{
list-style:none;
}

.footer li{
margin-bottom:8px;
}

@media(max-width:768px){

.story-grid{
grid-template-columns:1fr;
}

.leader-grid{
grid-template-columns:1fr;
}

}