*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#eef2f7;
    padding:12px;
}

.container{
    width:100%;
    max-width:100%;
    margin:0 auto;
    background:#fff;
    border-radius:16px;
    padding:15px;
}

.container h2{
    text-align:center;
    font-size:26px;
    margin-bottom:20px;
}

.card{
    display:flex;
    align-items:center;
    width:100%;
    padding:20px;
    margin-bottom:18px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:18px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    text-decoration:none;
}

.icon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:50%;
    background:#dce2ef;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
}

.icon img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.info{
    flex:1;
}

.info h3{
    font-size:22px;
    color:#111;
    margin-bottom:8px;
}

.info p{
    font-size:16px;
    color:#666;
    line-height:1.5;
}

@media (max-width:768px){

body{
    padding:10px;
}

.container{
    padding:10px;
    border-radius:12px;
}

.card{
    padding:18px;
}

.icon{
    width:72px;
    height:72px;
    min-width:72px;
}

.icon img{
    width:42px;
    height:42px;
}

.info h3{
    font-size:20px;
}

.info p{
    font-size:15px;
}
}