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

body{

font-family:'Inter',sans-serif;
background:#f5f8fc;
color:#222;
line-height:1.7;

}

.container{

width:min(1180px,92%);
margin:auto;

}

.section{

padding:90px 0;

}

.badge{

display:inline-block;
background:#eaf4ff;
color:#0b63ce;
padding:10px 18px;
border-radius:50px;
font-size:14px;
font-weight:700;
margin-bottom:20px;

}

.heading{

text-align:center;
margin-bottom:60px;

}

.heading h1{

font-size:46px;
font-weight:800;
margin-bottom:18px;
color:#111;

}

.heading span{

color:#0b63ce;

}

.heading p{

max-width:760px;
margin:auto;
font-size:18px;
color:#666;

}

.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;

}

.card{

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

}

.card:hover{

transform:translateY(-8px);

}

.card h2{

font-size:24px;
margin-bottom:12px;
color:#111;

}

.card p{

font-size:15px;
color:#666;
margin-bottom:28px;

}

.button{

display:inline-flex;
align-items:center;
gap:10px;
text-decoration:none;
background:#0b63ce;
color:#fff;
padding:14px 24px;
border-radius:50px;
font-weight:700;
transition:.3s;

}

.button:hover{

background:#084da3;

}

.info{

margin-top:80px;
background:#0b63ce;
color:#fff;
padding:55px;
border-radius:30px;
text-align:center;

}

.info h2{

font-size:36px;
margin-bottom:15px;

}

.info p{

max-width:750px;
margin:auto;
font-size:17px;
opacity:.95;

}

@media(max-width:768px){

.heading h1{

font-size:34px;

}

.info{

padding:35px 25px;

}

.info h2{

font-size:28px;

}

}
.about-button{
margin-bottom: 50px;
margin-top:40px;
text-align: center;

}

.about-button a{

display:inline-block;

padding:16px 34px;

background:#0B6EF3;

color:#fff;

font-size:17px;

font-weight:700;

border-radius:50px;

transition:.3s;

box-shadow:0 15px 35px rgba(11,110,243,.25);

}

.about-button a:hover{

background:#0858c4;

transform:translateY(-3px);

box-shadow:0 20px 40px rgba(11,110,243,.35);

}

@media(max-width:768px){

.about-button a{

display:block;

width:100%;

text-align:center;

}

}