/*Links Cards*/
.quickstartguides-section{
    padding: 50px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #f0f9ff 100%);
}

.quickstartguides-section h2{
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin-bottom:40px;
    text-align: center;
    line-height: 1.3;
}

/*guide card */
.quickstartguides-section .guide-card{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    height: 100%;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 14px;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
    
}

.quickstartguides-section .guide-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
    border-color: #a9a9a9;
}

/* Number Circle */
.guide-number{
    width: 50px;
    height: 50px;
    border-radius:50px;
    background: #eef5ff;
    color: #0d47a1;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content */
.guide-content{
    flex: 1;
}

.guide-content h5{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.5;
}

/* Arrow */
.guide-arrow{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff3b30;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.guide-card:hover .guide-arrow{
    background: #0d47a1;
    color: #fff;
    transform: translateX(5px);
}














