*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#fff;
    color:#333;
}

.container{
    width:1100px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

header{
    background:#fff;
    padding:15px 0;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:45px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    color:#0a8c3a;
}

/* =========================
   HERO
========================= */

.hero{
    padding:60px 0 80px;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.hero-text{
    width:45%;
}

.hero-text h1{
    font-size:60px;
    color:#4741b8;
    margin-bottom:20px;
}

.hero-text p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:35px;
    color:#111;
}

.playstore{
    width:190px;
}

.hero-image{
    width:50%;
}

.hero-image img{
    width:100%;
}

/* =========================
   CTA
========================= */

.cta{
    margin-bottom:80px;
}

.cta-box{
    background:#cfe6d8;
    padding:35px 50px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cta-box h2{
    color:#4741b8;
    font-size:32px;
    margin-bottom:10px;
}

.cta-box p{
    color:#777;
    font-size:14px;
}

.btn-contact{
    text-decoration:none;
    background:#4741b8;
    color:white;
    padding:14px 30px;
    border-radius:3px;
    font-weight:bold;
}

/* =========================
   NEWS
========================= */

.news{
    padding-bottom:80px;
}

.news-title{
    font-size:36px;
    margin-bottom:40px;
    color:#111;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card{
    background:white;
}

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

.card h3{
    font-size:18px;
    line-height:1.5;
    margin:15px 0;
    color:#222;
}

.card p{
    line-height:1.8;
    color:#444;
    margin-bottom:20px;
}

.card a{
    text-decoration:none;
    color:#2d3fb7;
    font-weight:bold;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .container{
        width:90%;
    }

    .hero-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .hero-text,
    .hero-image{
        width:100%;
    }

    .cta-box{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

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

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }
}