*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Inter,sans-serif;

background:#F8FAFC;

color:#10233F;

}

.container{

width:90%;

max-width:1280px;

margin:auto;

}

header{

background:#fff;

padding:20px 0;

box-shadow:0 5px 25px rgba(0,0,0,.05);

position:sticky;

top:0;

z-index:999;

}

.navbar{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

height:70px;

}

nav ul{

display:flex;

gap:40px;

list-style:none;

align-items:center;

}

nav a{

text-decoration:none;

font-weight:600;

color:#10233F;

transition:.3s;

}

nav a:hover{

color:#D4A937;

}

.btn{

background:#0B2C7D;

color:white!important;

padding:12px 28px;

border-radius:50px;

}

.hero{

padding:120px 0;

}

.hero .container{

display:flex;

justify-content:space-between;

align-items:center;

gap:80px;

}

.hero-left{

flex:1;

}

.hero-right{

flex:1;

text-align:right;

}

.hero-right img{

width:420px;

max-width:100%;

}

.hero h1{

font-family:"Playfair Display",serif;

font-size:64px;

line-height:1.15;

color:#10233F;

margin-bottom:25px;

}

.hero p{

font-size:20px;

line-height:1.8;

color:#666;

margin-bottom:40px;

}

.hero-btn{

display:inline-block;

padding:18px 40px;

background:#D4A937;

color:#fff;

text-decoration:none;

border-radius:50px;

font-weight:700;

transition:.3s;

}

.hero-btn:hover{

background:#0B2C7D;

}