*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f7fb;
    color:#334155;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:35px;
}

.page-header{
    margin-bottom:35px;
}

.page-header h1{
    font-size:30px;
    font-weight:700;
    color:#1e293b;
}

.page-header p{
    margin-top:8px;
    color:#64748b;
}

.download-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.download-card{
    background:white;
    border-radius:18px;
    padding:28px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
    border:1px solid #edf2f7;
}

.download-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

.icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.blue{
    background:#dbeafe;
    color:#2563eb;
}

.green{
    background:#dcfce7;
    color:#16a34a;
}

.orange{
    background:#ffedd5;
    color:#ea580c;
}

.download-card h3{
    font-size:22px;
    margin-bottom:10px;
    color:#1e293b;
}

.download-card p{
    color:#64748b;
    line-height:1.6;
    min-height:60px;
}

.actions{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.actions button{
    flex:1;
    border:none;
    border-radius:12px;
    padding:12px;
    cursor:pointer;
    font-weight:600;
    font-size:15px;
    transition:.25s;
}

.actions button i{
    margin-right:8px;
}

.excel{
    background:#16a34a;
    color:white;
}

.excel:hover{
    background:#15803d;
}

.pdf{
    background:#dc2626;
    color:white;
}

.pdf:hover{
    background:#b91c1c;
}

@media(max-width:768px){

    .container{
        padding:20px;
    }

    .download-card{
        padding:22px;
    }

    .page-header h1{
        font-size:24px;
    }
}

.page-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
}

.back-btn{
    width:46px;
    height:46px;
    border:none;
    border-radius:12px;
    background:#fff;
    color:#475569;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.25s;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.back-btn:hover{
    background:#2563eb;
    color:#fff;
    transform:translateX(-2px);
}