.member-card {
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.member-card:hover {
    transform: scale(1.03);
}

.member-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.member-in4 {
    color: #6c757d;
}