body{
margin:0;
font-family:'Poppins',sans-serif;
background:#f7f9fc;
color:#222;
}

/* HERO */

.page-hero{
background:
linear-gradient(
135deg,
#2563eb,
#1e40af
);

color:white;

text-align:center;

padding:80px 20px;

}

.page-hero h1{
font-size:56px;
margin:0;
}

.page-hero p{
font-size:20px;
opacity:.95;
max-width:700px;
margin:15px auto 0;
}

/* CONTAINER */

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

/* GRID */

.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

/* CARDS */

.info-card{

background:white;

padding:35px;

border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.info-card:hover{

transform:translateY(-8px);

box-shadow:
0 20px 40px rgba(0,0,0,.12);

}

.info-card h2{

color:#2563eb;

margin-top:0;

}

.info-card p{

line-height:1.9;
color:#555;

}

.info-card ul{
padding-left:20px;
}

.info-card li{
margin-bottom:10px;
}

/* STATS */

.stats-section{

width:90%;
max-width:1200px;

margin:-40px auto 50px;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:20px;

}

.stat-card{

background:white;

text-align:center;

padding:30px;

border-radius:20px;

box-shadow:
0 10px 25px rgba(0,0,0,.08);

}

.stat-card h2{

color:#2563eb;

font-size:40px;

margin:0;

}

.stat-card p{

margin-top:10px;

color:#666;

}

/* CTA */

.cta-section{

width:90%;
max-width:1200px;

margin:60px auto;

background:
linear-gradient(
135deg,
#2563eb,
#1e40af
);

padding:60px 20px;

text-align:center;

color:white;

border-radius:25px;

}

.cta-btn{

display:inline-block;

margin-top:20px;

padding:14px 30px;

background:white;

color:#2563eb;

text-decoration:none;

border-radius:30px;

font-weight:600;

}

/* MOBILE */

@media(max-width:768px){

.page-hero h1{
    font-size:36px;
}

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

.info-card{
    padding:25px;
}

}
