.account-dashboard-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.account-dashboard .feature-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all .3s ease;
}

.account-dashboard .feature-box:hover {
    transform: translateY(-6px);
    border-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.account-dashboard .feature-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: rgba(13, 110, 253, .1);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: .3s;
}

.account-dashboard .feature-box:hover .feature-icon {
    background: #0d6efd;
    color: #fff;
}

.account-dashboard .feature-box h6 {
    color: #222;
}

.account-dashboard .feature-box small {
    display: block;
    line-height: 1.6;
}

.account-dashboard .feature-box a {
    color: inherit;
}