*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f8fc;
}

/* Header */
header{
    background:#0a6ebd;
    color:#fff;
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
}

.btn{
    background:#fff;
    color:#0a6ebd;
    text-decoration:none;
    padding:10px 20px;
    border-radius:5px;
    font-weight:bold;
}

/* Hero */
.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 8%;
    min-height:80vh;
}

.hero-content{
    max-width:550px;
}

.hero-content h1{
    font-size:55px;
    margin-bottom:20px;
    color:#222;
}

.hero-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.hero-btn{
    background:#0a6ebd;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:5px;
}

.hero-image img{
    width:550px;
    max-width:100%;
    border-radius:10px;
}

/* Services */
.services{
    padding:80px 8%;
    text-align:center;
}

.section-title{
    font-size:38px;
    margin-bottom:40px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card i{
    font-size:40px;
    color:#0a6ebd;
    margin-bottom:15px;
}

.card h3{
    margin-bottom:10px;
}

/* Footer */
footer{
    background:#083d68;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:50px;
}

/* Responsive */
@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .hero-content h1{
        font-size:38px;
    }
}