*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f7fb;
    color:#1a1a1a;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.topbar{
    background:#0d1b2a;
    color:white;
    text-align:center;
    padding:14px;
    font-size:14px;
    letter-spacing:1px;
}

.hero{
    background:#ffffff;
    text-align:center;
    padding:80px 20px 40px;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(2px);
}

.hero-content{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-box{
    max-width:900px;
    margin:auto;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
    color:#071a2f;
}

.hero p{
    font-size:24px;
    color:#666;
    margin-bottom:35px;
}

.cta-btn{
    display:inline-block;
    background:#00b894;
    color:white;
    text-decoration:none;
    padding:20px 45px;
    border-radius:10px;
    font-size:22px;
    font-weight:bold;
    transition:0.3s;
}

.cta-btn:hover{
    background:#019875;
    transform:translateY(-3px);
}

.hero-banner{
    margin-top:50px;
    width:100%;
    display:flex;
    justify-content:center;
}

.hero-banner img{
    width:100%;
    max-width:1200px;
    height:auto;
    border-radius:12px;
    display:block;
}

.benefits{
    padding:90px 20px;
}

.benefits h2{
    text-align:center;
    font-size:44px;
    margin-bottom:55px;
    color:#0d1b2a;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    text-align:center;
}

.card h3{
    font-size:26px;
    margin-bottom:15px;
    color:#0d1b2a;
}

.card p{
    color:#666;
    line-height:1.7;
}

.cta-section{
    background:#0d1b2a;
    color:white;
    text-align:center;
    padding:90px 20px;
}

.cta-section h2{
    font-size:50px;
    margin-bottom:20px;
}

.cta-section p{
    color:#d9dfe6;
    margin-bottom:35px;
    font-size:20px;
}

footer{
    background:#08121d;
    color:#ccc;
    text-align:center;
    padding:35px 20px;
}

.footer-links{
    margin-top:15px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    margin:0 10px;
}

.footer-links a:hover{
    color:white;
}

@media(max-width:768px){

.hero{
    min-height:90vh;
}

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:18px;
}

.benefits h2,
.cta-section h2{
    font-size:34px;
}

.cta-btn{
    width:100%;
    text-align:center;
}

}