*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    color:#1d2939;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.top-banner{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:12px;
    font-weight:600;
    letter-spacing:1px;
}

.hero{
    background:linear-gradient(135deg,#f8fbff,#e8f2ff);
    padding:80px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.badge{
    display:inline-block;
    background:#dbeafe;
    color:#1e40af;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:49px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#475467;
    margin-bottom:35px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.cta-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.primary{
    background:#0f4c81;
    color:#fff;
}

.primary:hover{
    background:#09365c;
}

.secondary{
    border:2px solid #0f4c81;
    color:#0f4c81;
}

.secondary:hover{
    background:#0f4c81;
    color:#fff;
}

.about{
    padding:50px 0;
}

.about h2,
.specialties h2,
.contact h2{
    text-align:center;
    margin-bottom:30px;
    font-size:42px;
    color:#0f172a;
}

.about p{
    max-width:900px;
    margin:0 auto 20px;
    text-align:center;
    color:#475467;
}

.specialties{
    background:#f8fafc;
    padding:35px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.service-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.service-card h3{
    color:#0f4c81;
    margin-bottom:15px;
}

.service-card ul{
    padding-left:20px;
}

.service-card li{
    margin-bottom:10px;
}

.contact{
    padding:90px 0;
}

.contact-box{
    max-width:700px;
    margin:auto;
    text-align:center;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.phone{
    font-size:32px;
    font-weight:700;
    margin:20px 0;
}

.phone a{
    color:#0f4c81;
    text-decoration:none;
}

footer{
    background:#0f172a;
    color:#fff;
    padding:40px 0;
    text-align:center;
}

.footer-logo img{
    max-height:60px;
    margin-bottom:20px;
}

/* Responsive */

@media(max-width:992px){

    .hero-content{
        flex-direction:column-reverse;
        text-align:center;
    }

    .hero h1{
        font-size:44px;
    }

    .cta-buttons{
        justify-content:center;
    }

    .service-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:18px;
    }

    .about h2,
    .specialties h2,
    .contact h2{
        font-size:32px;
    }

    .phone{
        font-size:24px;
    }

    .contact-box{
        padding:30px;
    }
}