.quick-access{
    padding:70px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:34px;
    color:#0F3D2E;
    margin-bottom:8px;
}

.section-title p{
    color:#777;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 230px);
    justify-content: center;
    gap: 25px;
}

.quick-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:12px;
    padding:28px 20px;
    text-align:center;
    transition:.25s;
    color:#222;
}

.quick-card:hover{
    transform:translateY(-5px);
    border-color:#0F3D2E;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.quick-card .icon{
    font-size:38px;
    margin-bottom:15px;
}

.quick-card span{
    font-weight:600;
}