.important-documents{

padding:90px 0;

background:#fff;

}

.documents-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.document-card{

background:#fff;

padding:30px;

border-radius:18px;

border:1px solid var(--border);

box-shadow:var(--shadow);

transition:.3s;

}

.document-card:hover{

transform:translateY(-8px);

border-color:var(--primary);

}

.document-icon{

width:70px;

height:70px;

background:#eef4ff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

margin-bottom:20px;

}

.document-icon img{

width:38px;

}

.document-card h3{

margin-bottom:15px;

font-size:22px;

}

.document-card p{

color:#64748b;

line-height:1.7;

margin-bottom:20px;

}

.document-card ul{

list-style:none;

margin-bottom:25px;

}

.document-card ul li{

padding:10px 0;

border-bottom:1px solid #eef2f7;

}

.document-buttons{

display:flex;

gap:12px;

}