.dashboard{

    max-width:1100px;

    margin:auto;

    padding:40px;

}

.dashboard-hero{

    background:#1a1a1a;

    color:#fff;

    padding:50px;

    border-radius:12px;

    margin-bottom:40px;

}

.dashboard-hero h1{

    color:#d4af37;

    margin-bottom:20px;

}

.dashboard-hero p{

    line-height:1.8;

    font-size:1.05rem;

}

.dashboard-section{

    margin-bottom:50px;

}

.dashboard-section h2{

    margin-bottom:20px;

    border-bottom:2px solid #d4af37;

    padding-bottom:10px;

}

.quick-start-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.dashboard-card{

    background:#fff;

    border:1px solid #ddd;

    border-left:5px solid #d4af37;

    border-radius:10px;

    padding:25px;

    transition:.25s;

}

.dashboard-card:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 20px rgba(0,0,0,.1);

}

.dashboard-card h3{

    margin-bottom:15px;

}
.dashboard-card p{

    min-height:120px;

}

.roadmap{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.roadmap-step{

    flex:1;

    min-width:150px;

    background:#f8f8f8;

    border-radius:10px;

    padding:20px;

    text-align:center;

    border:1px solid #ddd;

}

.roadmap-step span{

    display:block;

    width:40px;

    height:40px;

    margin:0 auto 15px;

    background:#d4af37;

    color:#111;

    border-radius:50%;

    line-height:40px;

    font-weight:bold;

}

.resource-list{

    list-style:none;

    padding:0;

}

.resource-list li{

    padding:12px 0;

    border-bottom:1px solid #eee;

}

.contact-section{

    background:#f7f7f7;

    padding:30px;

    border-radius:10px;

}