/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

body{
    background:#f4f7fb;
    color:#333;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#0d6efd;
    color:#fff;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:1000;
}

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

.logo{
    font-size:28px;
    font-weight:700;
}

.logo span{
    color:#ffd43b;
}

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

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#ffd43b;
}

.hero{
    padding:80px 0;
    text-align:center;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
    color:#0d6efd;
}

.hero p{
    max-width:800px;
    margin:auto;
    font-size:18px;
    color:#555;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 30px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.btn:hover{
    background:#084fc7;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin:60px 0;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card h3{
    color:#0d6efd;
    margin-bottom:15px;
}

.page{
    background:#fff;
    margin:50px auto;
    padding:40px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.page h1{
    color:#0d6efd;
    margin-bottom:20px;
}

.page h2{
    margin-top:30px;
    color:#0d6efd;
}

.page p{
    margin-top:10px;
}

.page ul{
    margin:15px 0 15px 25px;
}

.page li{
    margin-bottom:8px;
}

footer{
    background:#0d6efd;
    color:#fff;
    text-align:center;
    padding:20px;
    margin-top:60px;
}

.contact-box{
    background:#eef5ff;
    padding:20px;
    border-left:5px solid #0d6efd;
    border-radius:8px;
    margin-top:20px;
}

a{
    color:#0d6efd;
}

@media(max-width:768px){

header .container{
    flex-direction:column;
    gap:15px;
}

nav ul{
    flex-direction:column;
    align-items:center;
}

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

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

.page{
    padding:25px;
}

}