.profile-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.profile-card .profile-image {
    width: 130px;
    border-radius: 50%;
}

.profile-card .profile-name {
    padding: 10px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-card .role {
    background-color: rgba(235, 235, 235, 0.856);
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #0040a0;
    margin-bottom: 10px;
}

.profile-card p {
    font-size: 15px;
    color: #555;
}

/* Mobile optimization */
@media (max-width: 992px) {
    .profile-card {
        padding: 20px;
    }
}