.dashboard-first-steps{
    max-width:1180px;
    margin:32px auto 0;
    background:#ffffff;
    border-radius:26px;
    padding:28px;
    box-shadow:0 8px 24px rgba(0,0,0,.07);
}

.dashboard-first-steps-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:20px;
}

.dashboard-first-steps h2{
    font-size:28px;
    color:#111827;
}

.dashboard-first-steps p{
    color:#4b5563;
    line-height:1.5;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap:14px;
}

.step-card{
    background:#f4f7ff;
    border-radius:18px;
    padding:18px;
    min-height:120px;
}

.step-card strong{
    display:flex;
    align-items:center;
    gap:8px;
    color:#5277e8;
    margin-bottom:8px;
}

.step-card span{
    color:#374151;
    font-size:14px;
    line-height:1.4;
}

body.dark-mode .dashboard-first-steps{
    background:#1f1f1f;
}

body.dark-mode .dashboard-first-steps h2{
    color:#e0e0e0;
}

body.dark-mode .dashboard-first-steps p,
body.dark-mode .step-card span{
    color:#cbd5e1;
}

body.dark-mode .step-card{
    background:#2a2a2a;
}

@media(max-width:900px){
    .dashboard-first-steps{
        margin:26px 0 0;
    }

    .dashboard-first-steps-header{
        flex-direction:column;
        align-items:flex-start;
    }
}
