*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Cairo',sans-serif;
}

body{
background:#001f77;
color:#fff;
}

header{
background:#fff;
padding:18px 22px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:100;
}

.logo{
font-size:34px;
font-weight:800;
color:#0d47b7;
}

.login-btn{
background:#0d47b7;
color:#fff;
border:none;
padding:12px 26px;
border-radius:16px;
font-size:20px;
font-weight:700;
cursor:pointer;
}

.hero{
padding:50px 24px;
text-align:center;
background:linear-gradient(180deg,#002891,#001f77);
}

.badge{
display:inline-block;
padding:12px 24px;
border-radius:30px;
background:#243b86;
border:1px solid #ff9b25;
color:#ff9b25;
font-weight:700;
margin-bottom:30px;
}

.hero h1{
font-size:46px;
line-height:1.5;
margin-bottom:20px;
font-weight:800;
}

.orange{
color:#ff9b25;
}

.hero p{
font-size:22px;
line-height:2;
opacity:.9;
margin-bottom:35px;
}

.cta{
background:#f59a12;
color:#fff;
border:none;
padding:20px 40px;
font-size:28px;
font-weight:800;
border-radius:20px;
cursor:pointer;
box-shadow:0 0 30px rgba(245,154,18,.35);
}

.features{
display:flex;
gap:15px;
overflow:auto;
padding:30px 20px;
}

.feature{
min-width:180px;
background:#fff;
color:#111;
padding:18px;
border-radius:22px;
text-align:center;
font-size:22px;
font-weight:700;
}

.section-title{
padding:20px;
font-size:34px;
font-weight:800;
color:#6ea2ff;
}

.cards{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
padding:20px;
}

.card{
background:#fff;
border-radius:26px;
overflow:hidden;
color:#111;
}

.card img{
width:100%;
height:260px;
object-fit:cover;
}

.card-content{
padding:20px;
}

.card-title{
font-size:30px;
font-weight:800;
margin-bottom:10px;
}

.card-desc{
font-size:18px;
opacity:.75;
line-height:1.8;
}

.why{
padding:25px;
}

.why-box{
background:#fff;
border-radius:30px;
padding:25px;
color:#111;
}

.why-item{
padding:25px 0;
border-bottom:1px solid #eee;
font-size:24px;
font-weight:700;
}

.why-item:last-child{
border:none;
}

.footer-btn{
margin:30px 20px;
width:calc(100% - 40px);
padding:22px;
border:none;
border-radius:22px;
background:#f59a12;
color:#fff;
font-size:30px;
font-weight:800;
cursor:pointer;
}

footer{
background:#fff;
padding:50px 20px;
text-align:center;
color:#333;
margin-top:30px;
}

.footer-logo{
margin-bottom:15px;
display:block;
}

footer p{
margin-top:10px;
opacity:.7;
}

@media(max-width:700px){

.hero h1{
font-size:34px;
}

.hero p{
font-size:18px;
}

.cards{
grid-template-columns:1fr;
}

.card img{
height:220px;
}

}
