.cc-page{
max-width:1200px;
margin:0 auto;
padding:40px 20px;
}

.cc-page-title{
margin-bottom:40px;
}

.cc-page-title h2{
font-size:28px;
font-weight:700;
}

.cc-page-title p{
color:#777;
margin-top:5px;
}

.cc-cs-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.cc-cs-card{
display:block;
background:#fff;
border-radius:12px;
padding:25px;
border:1px solid #eee;
transition:all .2s;
}

.cc-cs-card:hover{
border-color:#3dbb8b;
transform:translateY(-3px);
}

.cc-cs-icon{
font-size:30px;
margin-bottom:10px;
}

.cc-cs-card h3{
font-size:18px;
margin-bottom:5px;
}

.cc-cs-card p{
font-size:14px;
color:#777;
}

@media (max-width:768px){

.cc-cs-grid{
grid-template-columns:1fr;
}

}

